src/Payment/LuckyMoney/LuckyMoney.php 1 location
|
@@ 104-106 (lines=3) @@
|
| 101 |
|
*/ |
| 102 |
|
public function __call($method, $args) |
| 103 |
|
{ |
| 104 |
|
if (is_callable([$this->getAPI(), $method])) { |
| 105 |
|
return call_user_func_array([$this->api, $method], $args); |
| 106 |
|
} |
| 107 |
|
} |
| 108 |
|
} |
| 109 |
|
|
src/Payment/Payment.php 1 location
|
@@ 238-240 (lines=3) @@
|
| 235 |
|
*/ |
| 236 |
|
public function __call($method, $args) |
| 237 |
|
{ |
| 238 |
|
if (is_callable([$this->getAPI(), $method])) { |
| 239 |
|
return call_user_func_array([$this->api, $method], $args); |
| 240 |
|
} |
| 241 |
|
} |
| 242 |
|
} |
| 243 |
|
|