Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class ElementCollectionVisitor implements Visitor |
||
19 | { |
||
20 | /** |
||
21 | * @var Element[] |
||
22 | */ |
||
23 | private $elements; |
||
24 | |||
25 | /** |
||
26 | * @var ProductionLine |
||
27 | */ |
||
28 | private $factoryProductionLine; |
||
29 | |||
30 | /** |
||
31 | * @param Element[] $elements |
||
32 | * @param ProductionLine $factoryProductionLine |
||
33 | */ |
||
34 | public function __construct(array $elements = [], ProductionLine $factoryProductionLine) |
||
38 | } |
||
39 | |||
40 | public function visitManager(ManagerInterface $manager): void |
||
48 |