| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 59 | public function __construct(array $entities, bool $allowEntitiesChildren = false) |
|
| 20 | { |
||
| 21 | 59 | if (empty($entities)) { |
|
| 22 | 2 | throw static::customEmptyException(); |
|
| 23 | } |
||
| 24 | |||
| 25 | 57 | $this->allowEntitiesChildren = $allowEntitiesChildren; |
|
| 26 | |||
| 27 | 57 | foreach ($entities as $entity) { |
|
| 28 | 57 | $this->add($entity); |
|
| 29 | } |
||
| 30 | 49 | } |
|
| 31 | |||
| 56 |