magic_methods_005.phpt 221 B

123456789101112
  1. --TEST--
  2. Testing __call() declaration in interface with wrong modifier
  3. --FILE--
  4. <?php
  5. interface a {
  6. static function __call($a, $b);
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Method a::__call() cannot be static in %s on line %d