diff options
-rwxr-xr-x | Zend/tests/bug33732.phpt | 4 | ||||
-rw-r--r-- | Zend/tests/objects_014.phpt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug33732.phpt b/Zend/tests/bug33732.phpt index 07cd7193ea..4969791faa 100755 --- a/Zend/tests/bug33732.phpt +++ b/Zend/tests/bug33732.phpt @@ -9,7 +9,7 @@ interface iA { class A implements iA { } -class B extends A { +class B extends A implements iA { } echo iA::cA; @@ -27,7 +27,7 @@ interface iB2 extends iA2 { class A2 implements iA2 { } -class B2 extends A2 { +class B2 extends A2 implements iA2 { } echo iA2::cA; diff --git a/Zend/tests/objects_014.phpt b/Zend/tests/objects_014.phpt index 2dec0c078a..c422b392ea 100644 --- a/Zend/tests/objects_014.phpt +++ b/Zend/tests/objects_014.phpt @@ -12,4 +12,4 @@ interface bar extends foo, foo { echo "Done\n"; ?> --EXPECTF-- -Fatal error: Cannot implement previously implemented interface foo in %s on line %d +Fatal error: Class bar cannot implement previously implemented interface foo in %s on line %d |