interface_method_private.phpt 229 B

123456789101112
  1. --TEST--
  2. ZE2 An interface method cannot be private
  3. --FILE--
  4. <?php
  5. interface if_a {
  6. abstract private function err();
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Access type for interface method if_a::err() must be public in %s on line %d