| 1 | <?php |
||
| 9 | class StaticArr |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Creates an instance of Arr and invokes the given method with the |
||
| 13 | * rest of the passed arguments. |
||
| 14 | * The result is not cast, so the return value may be of type Arr, array, |
||
| 15 | * integer, boolean, etc. |
||
| 16 | * |
||
| 17 | * @param string $name |
||
| 18 | * @param mixed[] $arguments |
||
| 19 | * |
||
| 20 | * @throws \BadMethodCallException |
||
| 21 | * |
||
| 22 | * @return mixed |
||
| 23 | */ |
||
| 24 | public static function __callStatic($name, $arguments) |
||
| 40 | } |
||
| 41 |