summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2004-07-19 19:02:11 +0000
committerSebastian Bergmann <sebastian@php.net>2004-07-19 19:02:11 +0000
commit32e125e2b87f8381064deb35908d40d8f19ac948 (patch)
tree9ed61eb07294b525ef9263c296e1742240ac9125 /ext/reflection/php_reflection.c
parent5ff410efdff42f46842abef6874839f5ebfd6788 (diff)
downloadphp-git-32e125e2b87f8381064deb35908d40d8f19ac948.tar.gz
Do not use contracted forms.
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r--ext/reflection/php_reflection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c
index 81cde4791e..4ea63eb206 100644
--- a/ext/reflection/php_reflection.c
+++ b/ext/reflection/php_reflection.c
@@ -2541,7 +2541,7 @@ ZEND_METHOD(reflection_class, isSubclassOf)
case IS_STRING:
if (zend_lookup_class(Z_STRVAL_P(class_name), Z_STRLEN_P(class_name), &pce TSRMLS_CC) == FAILURE) {
zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
- "Interface %s doesn't exist", Z_STRVAL_P(class_name));
+ "Interface %s does not exist", Z_STRVAL_P(class_name));
return;
}
class_ce = *pce;
@@ -2587,7 +2587,7 @@ ZEND_METHOD(reflection_class, implementsInterface)
case IS_STRING:
if (zend_lookup_class(Z_STRVAL_P(interface), Z_STRLEN_P(interface), &pce TSRMLS_CC) == FAILURE) {
zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
- "Interface %s doesn't exist", Z_STRVAL_P(interface));
+ "Interface %s does not exist", Z_STRVAL_P(interface));
return;
}
interface_ce = *pce;