diff options
Diffstat (limited to 'ext/spl/php_spl.c')
-rw-r--r-- | ext/spl/php_spl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 5c42801a75..3fd3604072 100644 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -93,7 +93,7 @@ PHP_FUNCTION(class_parents) } if (Z_TYPE_P(obj) != IS_OBJECT && Z_TYPE_P(obj) != IS_STRING) { - zend_type_error("object or string expected"); + zend_type_error("Object or string expected"); RETURN_THROWS(); } @@ -126,7 +126,7 @@ PHP_FUNCTION(class_implements) RETURN_THROWS(); } if (Z_TYPE_P(obj) != IS_OBJECT && Z_TYPE_P(obj) != IS_STRING) { - zend_type_error("object or string expected"); + zend_type_error("Object or string expected"); RETURN_THROWS(); } @@ -155,7 +155,7 @@ PHP_FUNCTION(class_uses) RETURN_THROWS(); } if (Z_TYPE_P(obj) != IS_OBJECT && Z_TYPE_P(obj) != IS_STRING) { - zend_type_error("object or string expected"); + zend_type_error("Object or string expected"); RETURN_THROWS(); } |