magic_methods_017.phpt 281 B

12345678910
  1. --TEST--
  2. __callStatic first parameter should be a string typed
  3. --FILE--
  4. <?php
  5. class Foo {
  6. static function __callStatic(int $name, array $arguments) {}
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Foo::__callStatic(): Parameter #1 ($name) must be of type string when declared in %s on line %d