Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
27 | 1 | public function __construct($serializers = []) |
|
28 | { |
||
29 | 1 | foreach ($serializers as $key => $serializer) { |
|
30 | 1 | if (! ($serializer instanceof BaseSerializer)) { |
|
31 | 1 | throw new \RuntimeException("Only serializer objects allowed here."); |
|
32 | } |
||
33 | 1 | } |
|
34 | 1 | parent::__construct($serializers); |
|
35 | 1 | } |
|
36 | |||
54 |