| 1 | <?php |
||
| 23 | class Undefined |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Call capturing to merely return this same object. |
||
| 27 | * |
||
| 28 | * @param string $method |
||
| 29 | * @param array $args |
||
| 30 | * @return self |
||
| 31 | */ |
||
| 32 | 3 | public function __call($method, array $args) |
|
| 36 | |||
| 37 | /** |
||
| 38 | * Return a string, avoiding E_RECOVERABLE_ERROR |
||
| 39 | * |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | 1 | public function __toString() |
|
| 46 | } |
||
| 47 |