diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-05-03 13:46:00 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-05-03 13:46:00 +0000 |
commit | ed3522572156c56cd433ceeaa4d786b1c2b94dd7 (patch) | |
tree | 104ccefe8883142296630ce568672ef0cba153ca /tests | |
parent | 69326a796e6e805097836d73b05424671f86c098 (diff) | |
download | php-git-ed3522572156c56cd433ceeaa4d786b1c2b94dd7.tar.gz |
Fixed error message
Diffstat (limited to 'tests')
-rw-r--r-- | tests/classes/interface_must_be_implemented.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/classes/interface_must_be_implemented.phpt b/tests/classes/interface_must_be_implemented.phpt index 1e0667eb5f..a4d79704e1 100644 --- a/tests/classes/interface_must_be_implemented.phpt +++ b/tests/classes/interface_must_be_implemented.phpt @@ -14,4 +14,4 @@ class derived_a implements if_a { ?> --EXPECTF-- -Fatal error: Class derived_a contains 1 abstract methods and must therefore be declared abstract (if_a::f_a) in %s on line %d +Fatal error: Class derived_a contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (if_a::f_a) in %s on line %d |