Conditions | 2 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 0 |
1 | <?php |
||
14 | 13 | public function __construct($items = []) |
|
15 | { |
||
16 | array_walk($items, function ($value) { |
||
17 | 1 | if (!$value instanceof Deposit) { |
|
18 | throw new InvalidArgumentException('You should pass only Deposit objects to this collection.'); |
||
19 | } |
||
20 | 13 | }); |
|
21 | |||
22 | 13 | parent::__construct($items); |
|
23 | 13 | } |
|
37 |