1 | <?php |
||
25 | class ThemeContainersGenerator implements GeneratorInterface |
||
26 | { |
||
27 | /** |
||
28 | * @var FormFactoryInterface |
||
29 | */ |
||
30 | protected $formFactory; |
||
31 | |||
32 | /** |
||
33 | * @var FactoryInterface |
||
34 | */ |
||
35 | protected $containerFactory; |
||
36 | |||
37 | /** |
||
38 | * @var RepositoryInterface |
||
39 | */ |
||
40 | protected $containerRepository; |
||
41 | |||
42 | /** |
||
43 | * @var ContainerServiceInterface |
||
44 | */ |
||
45 | protected $containerService; |
||
46 | |||
47 | /** |
||
48 | * ThemeContainersGenerator constructor. |
||
49 | * |
||
50 | * @param FormFactoryInterface $formFactory |
||
51 | * @param FactoryInterface $containerFactory |
||
52 | * @param RepositoryInterface $containerRepository |
||
53 | * @param ContainerServiceInterface $containerService |
||
54 | */ |
||
55 | public function __construct(FormFactoryInterface $formFactory, FactoryInterface $containerFactory, RepositoryInterface $containerRepository, ContainerServiceInterface $containerService) |
||
62 | |||
63 | /** |
||
64 | * {@inheritdoc} |
||
65 | */ |
||
66 | public function generate(array $containers): void |
||
76 | |||
77 | /** |
||
78 | * @param array $containerData |
||
79 | * |
||
80 | * @return mixed |
||
81 | * |
||
82 | * @throws \Exception |
||
83 | */ |
||
84 | protected function createContainer(array $containerData) |
||
95 | } |
||
96 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.