diff options
author | Matt Wilmas <mattwil@php.net> | 2009-06-07 15:46:54 +0000 |
---|---|---|
committer | Matt Wilmas <mattwil@php.net> | 2009-06-07 15:46:54 +0000 |
commit | 2462fce2442c6904995c265f48c145e4c82d8e9f (patch) | |
tree | 1a4afdfbd3f0d2c2d9f5a9b9734fbb0e3e72fb5c /tests/classes | |
parent | 10b559c28c1058fe729a705cc09acba4a2adc6c4 (diff) | |
download | php-git-2462fce2442c6904995c265f48c145e4c82d8e9f.tar.gz |
MFH: Changed error messages to use "cannot" instead of "can not" (meaning "also can")
Diffstat (limited to 'tests/classes')
-rw-r--r-- | tests/classes/__call_005.phpt | 2 | ||||
-rw-r--r-- | tests/classes/__call_007.phpt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/classes/__call_005.phpt b/tests/classes/__call_005.phpt index 53c063aaf2..6e1584878e 100644 --- a/tests/classes/__call_005.phpt +++ b/tests/classes/__call_005.phpt @@ -22,7 +22,7 @@ $b = new B(); $b->test(); ?> --EXPECTF-- -Warning: The magic method __call() must have public visibility and can not be static in %s__call_005.php on line 3 +Warning: The magic method __call() must have public visibility and cannot be static in %s__call_005.php on line 3 In A::__call(test1, array(1,a)) object(B)#1 (0) { } diff --git a/tests/classes/__call_007.phpt b/tests/classes/__call_007.phpt index de225547db..d79dba3bf6 100644 --- a/tests/classes/__call_007.phpt +++ b/tests/classes/__call_007.phpt @@ -52,7 +52,7 @@ try { ?> ==DONE== --EXPECTF-- -Warning: The magic method __call() must have public visibility and can not be static in %s on line 3 +Warning: The magic method __call() must have public visibility and cannot be static in %s on line 3 ---> Invoke __call via simple method call. NULL Exception caught OK; continuing. |