magic_methods_009.phpt 254 B

12345678910111213
  1. --TEST--
  2. Testing __callstatic declaration with wrong modifier
  3. --FILE--
  4. <?php
  5. class a {
  6. static protected function __callstatic($a, $b) {
  7. }
  8. }
  9. ?>
  10. --EXPECTF--
  11. Warning: The magic method a::__callstatic() must have public visibility in %s on line %d