php-8.0.30-src/Zend/tests/traits/interface_002.phpt

25 lines
411 B
PHP

--TEST--
Checking error message when the trait doesn't implements the interface
--FILE--
<?php
trait foo {
public function a() {
}
}
interface baz {
public function abc();
}
class bar implements baz {
use foo;
}
new bar;
?>
--EXPECTF--
Fatal error: Class bar contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (baz::abc) in %s on line %d