Lines Matching refs:method
2 Request #55247 (Parser problem with static calls using string method name)
6 public static function __callStatic($method, $arguments)
8 echo $method . PHP_EOL;
10 public function __call($method, $arguments)
12 echo $method . PHP_EOL;
16 $method = 'method';
20 $test->method();
21 $test->$method();
22 $test->{'method'}();
24 Test::method();
25 Test::$method();
26 Test::{'method'}();
29 method
30 method
31 method
32 method
33 method
34 method