src/Base/FlyAdapter.php 1 location
|
@@ 56-58 (lines=3) @@
|
| 53 |
|
*/ |
| 54 |
|
public function __call($method, $arguments) |
| 55 |
|
{ |
| 56 |
|
if (array_key_exists($method, $this->methodMap)) { |
| 57 |
|
return call_user_func_array([$this->subject, $this->methodMap[$method]], $arguments); |
| 58 |
|
} |
| 59 |
|
} |
| 60 |
|
} |
| 61 |
|
|
src/Base/DynamicAdapter.php 1 location
|
@@ 44-46 (lines=3) @@
|
| 41 |
|
*/ |
| 42 |
|
public function __call($method, array $arguments) |
| 43 |
|
{ |
| 44 |
|
if (array_key_exists($method, $this->methodMap)) { |
| 45 |
|
return call_user_func_array([$this->subject, $this->methodMap[$method]], $arguments); |
| 46 |
|
} |
| 47 |
|
} |
| 48 |
|
} |
| 49 |
|
|