abstract_derived.phpt 372 B

12345678910111213141516
  1. --TEST--
  2. ZE2 A derived class with an abstract method must be abstract
  3. --FILE--
  4. <?php
  5. class base {
  6. }
  7. class derived extends base {
  8. abstract function show();
  9. }
  10. ?>
  11. ===DONE===
  12. --EXPECTF--
  13. Fatal error: Class derived contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (derived::show) in %sabstract_derived.php on line %d