@@ -172,7 +172,7 @@ protected function getResourceClassFromConfig($config, $requestedName)
172
172
* @param string $requestedName
173
173
* @return bool
174
174
*/
175
- protected function isValidConfig (array $ config , $ requestedName , containerinterface $ container )
175
+ protected function isValidConfig (array $ config , $ requestedName , ContainerInterface $ container )
176
176
{
177
177
if (
178
178
! isset ($ config ['object_manager ' ])
@@ -213,7 +213,7 @@ protected function normalizeClassname($className)
213
213
* @return HydratorInterface
214
214
*/
215
215
protected function loadHydrator (
216
- containerinterface $ container ,
216
+ ContainerInterface $ container ,
217
217
array $ doctrineConnectedConfig ,
218
218
array $ doctrineHydratorConfig
219
219
) {
@@ -249,7 +249,7 @@ protected function loadHydrator(
249
249
* @param ObjectManager $objectManager
250
250
* @return QueryCreateFilterInterface
251
251
*/
252
- protected function loadQueryCreateFilter (containerinterface $ container , array $ config , $ objectManager )
252
+ protected function loadQueryCreateFilter (ContainerInterface $ container , array $ config , $ objectManager )
253
253
{
254
254
$ createFilterManager = $ container ->get ('LaminasApiToolsDoctrineQueryCreateFilterManager ' );
255
255
$ filterManagerAlias = $ config ['query_create_filter ' ] ?? 'default ' ;
@@ -269,7 +269,7 @@ protected function loadQueryCreateFilter(containerinterface $container, array $c
269
269
* @return array
270
270
* @throws ServiceNotCreatedException
271
271
*/
272
- protected function loadQueryProviders (containerinterface $ serviceLocator , array $ config , $ objectManager )
272
+ protected function loadQueryProviders (ContainerInterface $ serviceLocator , array $ config , $ objectManager )
273
273
{
274
274
$ queryProviders = [];
275
275
$ queryManager = $ serviceLocator ->get ('LaminasApiToolsDoctrineQueryProviderManager ' );
@@ -308,7 +308,7 @@ class_exists(DocumentManager::class)
308
308
* @param array $config
309
309
* @return array
310
310
*/
311
- protected function loadConfiguredListeners (containerinterface $ container , array $ config )
311
+ protected function loadConfiguredListeners (ContainerInterface $ container , array $ config )
312
312
{
313
313
if (! isset ($ config ['listeners ' ])) {
314
314
return [];
0 commit comments