Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 81.82% |
Changes | 0 |
1 | <?php |
||
13 | final class GalleryFactory extends AbstractComponentFactory |
||
14 | { |
||
15 | /** @var GalleryItemFactory */ |
||
16 | private $itemFactory; |
||
17 | |||
18 | 3 | public function __construct(ObjectManager $manager, ValidatorInterface $validator, GalleryItemFactory $itemFactory) |
|
22 | 3 | } |
|
23 | |||
24 | public function getItemFactory() |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | 2 | public function create(?array $ops = null): Gallery |
|
40 |