Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 62.5% |
Changes | 0 |
1 | <?php |
||
18 | class TransactionCollection extends Collection |
||
19 | { |
||
20 | const INTERACTION_ID = 'interactionId'; |
||
21 | protected $type = Transaction::class; |
||
22 | |||
23 | |||
24 | 1 | protected function indexRow($offset, $row) |
|
32 | 1 | } |
|
33 | |||
34 | /** |
||
35 | * @param $id |
||
36 | * @return Payment |
||
37 | */ |
||
38 | public function getByInteractionId($id) |
||
43 |