abstract-methods02.phpt 362 B

1234567891011121314151617181920212223242526
  1. --TEST--
  2. Abstract Trait Methods should behave like common abstract methods.
  3. --FILE--
  4. <?php
  5. error_reporting(E_ALL);
  6. trait THello {
  7. public abstract function hello();
  8. }
  9. trait THelloImpl {
  10. public function hello() {
  11. echo 'Hello';
  12. }
  13. }
  14. class TraitsTest {
  15. use THello;
  16. use THelloImpl;
  17. }
  18. $test = new TraitsTest();
  19. $test->hello();
  20. ?>
  21. --EXPECT--
  22. Hello