Lines Matching refs:__call
2 Ensure exceptions are handled properly when thrown in a statically declared __call.
6 static function __call($strMethod, $arrArgs) {
24 echo "---> Invoke __call via simple method call.\n";
31 echo "\n\n---> Invoke __call via scope resolution operator within instance.\n";
38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
46 echo "\n\n---> Invoke __call via callback.\n";
55 Warning: The magic method __call() must have public visibility and cannot be static in %s on line 3
56 ---> Invoke __call via simple method call.
61 ---> Invoke __call via scope resolution operator within instance.
66 ---> Invoke __call via scope resolution operator within child instance.
71 ---> Invoke __call via callback.