ZF\Apigility\Admin\Controller\ModuleConfigControllerFactory::createService PHP Метод

createService() публичный Метод

public createService ( Zend\ServiceManager\ServiceLocatorInterface $container ) : ModuleConfigController
$container Zend\ServiceManager\ServiceLocatorInterface
Результат ModuleConfigController
    public function createService(ServiceLocatorInterface $container)
    {
        if ($container instanceof AbstractPluginManager) {
            $container = $container->getServiceLocator() ?: $container;
        }
        return $this($container, ModuleConfigController::class);
    }
ModuleConfigControllerFactory