| Total Complexity | 5 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class Generators implements GeneratorsInterface |
||
| 20 | { |
||
| 21 | /** @var GeneratorInterface[] */ |
||
| 22 | private $generators; |
||
| 23 | |||
| 24 | /** @var string[] */ |
||
| 25 | private $buildMessages = []; |
||
| 26 | |||
| 27 | public function __construct(array $generators) |
||
| 28 | { |
||
| 29 | $this->generators = $generators; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function generateBySection(SectionInterface $section): array |
||
| 47 | } |
||
| 48 | |||
| 49 | public function getBuildMessages(): array |
||
| 54 |