@@ 59-68 (lines=10) @@ | ||
56 | * |
|
57 | * @return mixed |
|
58 | */ |
|
59 | public function __call($method, $args) |
|
60 | { |
|
61 | if (!method_exists($this, $method)) { |
|
62 | return call_user_func_array( |
|
63 | [$this->response, $method], |
|
64 | $args |
|
65 | ); |
|
66 | } |
|
67 | // @codeCoverageIgnoreStart |
|
68 | } |
|
69 | ||
70 | // @codeCoverageIgnoreEnd |
|
71 |
@@ 59-68 (lines=10) @@ | ||
56 | * |
|
57 | * @return mixed |
|
58 | */ |
|
59 | public function __call($method, $args) |
|
60 | { |
|
61 | if (!method_exists($this, $method)) { |
|
62 | return call_user_func_array( |
|
63 | [$this->response, $method], |
|
64 | $args |
|
65 | ); |
|
66 | } |
|
67 | // @codeCoverageIgnoreStart |
|
68 | } |
|
69 | ||
70 | // @codeCoverageIgnoreEnd |
|
71 |