abstract_not_declared.phpt 331 B

12345678910111213
  1. --TEST--
  2. ZE2 An abstract class must be declared abstract
  3. --FILE--
  4. <?php
  5. class fail {
  6. abstract function show();
  7. }
  8. echo "Done\n"; // shouldn't be displayed
  9. ?>
  10. --EXPECTF--
  11. Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (fail::show) in %s on line %d