Файл: system/vendor/laminas/laminas-servicemanager/src/Proxy/LazyServiceFactory.php
Строк: 100
<?php
/**
* @see https://github.com/laminas/laminas-servicemanager for the canonical source repository
* @copyright https://github.com/laminas/laminas-servicemanager/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-servicemanager/blob/master/LICENSE.md New BSD License
*/
namespace LaminasServiceManagerProxy;
use InteropContainerContainerInterface;
use LaminasServiceManagerException;
use LaminasServiceManagerFactoryDelegatorFactoryInterface;
use ProxyManagerFactoryLazyLoadingValueHolderFactory;
use ProxyManagerProxyLazyLoadingInterface;
/**
* Delegator factory responsible of instantiating lazy loading value holder proxies of
* given services at runtime
*
* @link https://github.com/Ocramius/ProxyManager/blob/master/docs/lazy-loading-value-holder.md
*/
final class LazyServiceFactory implements DelegatorFactoryInterface
{
/**
* @var ProxyManagerFactoryLazyLoadingValueHolderFactory
*/
private $proxyFactory;
/**
* @var string[] map of service names to class names
*/
private $servicesMap;
/**
* @param LazyLoadingValueHolderFactory $proxyFactory
* @param string[] $servicesMap a map of service names to class names of their
* respective classes
*/
public function __construct(LazyLoadingValueHolderFactory $proxyFactory, array $servicesMap)
{
$this->proxyFactory = $proxyFactory;
$this->servicesMap = $servicesMap;
}
/**
* {@inheritDoc}
*
* @return ProxyManagerProxyVirtualProxyInterface
*/
public function __invoke(ContainerInterface $container, $name, callable $callback, array $options = null)
{
if (isset($this->servicesMap[$name])) {
$initializer = function (&$wrappedInstance, LazyLoadingInterface $proxy) use ($callback) {
$proxy->setProxyInitializer(null);
$wrappedInstance = $callback();
return true;
};
return $this->proxyFactory->createProxy($this->servicesMap[$name], $initializer);
}
throw new ExceptionServiceNotFoundException(
sprintf('The requested service "%s" was not found in the provided services map', $name)
);
}
}