magic_methods_006.phpt 243 B

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