| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class Wallet extends ApiResource |
||
| 6 | { |
||
| 7 | const OBJECT_NAME = 'balances'; |
||
| 8 | |||
| 9 | use ApiOperations\All; |
||
| 10 | use ApiOperations\Create; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param string $currency |
||
| 14 | * @return array|object |
||
| 15 | * @link https://developer.flutterwave.com/reference#get-balances-per-currency |
||
| 16 | */ |
||
| 17 | public static function balanceByCurrency(string $currency) |
||
| 24 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.