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
|
@@ 178-180 (lines=3) @@
|
| 175 |
|
*/ |
| 176 |
|
public function __call($method, $args) |
| 177 |
|
{ |
| 178 |
|
if (is_callable([$this->getAPI(), $method])) { |
| 179 |
|
return call_user_func_array([$this->api, $method], $args); |
| 180 |
|
} |
| 181 |
|
} |
| 182 |
|
} |
| 183 |
|
|