![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-di/src/Container/ServiceManager/ |
<?php declare(strict_types=1); namespace Laminas\Di\Container\ServiceManager; use Laminas\Di\Container\AutowireFactory as GenericAutowireFactory; use Laminas\ServiceManager\Factory\AbstractFactoryInterface; use Psr\Container\ContainerInterface; /** * Create instances with autowiring * * This class is purely for compatibility with Laminas\ServiceManager interface which requires container-interop */ class AutowireFactory implements AbstractFactoryInterface { private GenericAutowireFactory $factory; public function __construct(?GenericAutowireFactory $factory = null) { $this->factory = $factory ? : new GenericAutowireFactory(); } /** * Check creatability of the requested name * * @param string $requestedName * @return bool */ public function canCreate(ContainerInterface $container, $requestedName) { return $this->factory->canCreate($container, $requestedName); } /** * Make invokable and implement the laminas-service factory pattern * * @psalm-suppress RedundantCastGivenDocblockType * @param string $requestedName * @return object */ public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null) { return $this->factory->create($container, (string) $requestedName, $options); } }