You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
263 B

  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. Fatal error: The magic method __callStatic() must have public visibility and be static in %s on line %d