| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function __construct(array $transactions, array $recipients) |
||
| 18 | { |
||
| 19 | call_user_func_array(function (RawTransaction ...$t) {}, $transactions); |
||
|
|
|||
| 20 | call_user_func_array(function (Recipient ...$r) {}, $recipients); |
||
| 21 | |||
| 22 | 2 | $this->transactions = $transactions; |
|
| 23 | 2 | $this->recipients = $recipients; |
|
| 24 | 2 | } |
|
| 42 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.