Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/laminas/laminas-di/src/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/laminas/laminas-di/src/GeneratedInjectorDelegator.php

<?php

declare(strict_types=1);

namespace Laminas\Di;

use Laminas\Di\Exception\InvalidServiceConfigException;
use Psr\Container\ContainerInterface;

use function class_exists;
use function is_string;

class GeneratedInjectorDelegator
{
    /**
     * @param string $name
     */
    public function __invoke(ContainerInterface $container, $name, callable $callback): InjectorInterface
    {
        $config    = $container->has('config') ? $container->get('config') : [];
        $aotConfig = $config['dependencies']['auto']['aot'] ?? [];
        $namespace = ! isset($aotConfig['namespace']) || $aotConfig['namespace'] === ''
            ? 'Laminas\Di\Generated'
            : $aotConfig['namespace'];

        if (! is_string($namespace)) {
            throw new InvalidServiceConfigException('Provided namespace is not a string.');
        }

        $injector = $callback();

        $generatedInjector = $namespace . '\\GeneratedInjector';
        if (class_exists($generatedInjector)) {
            return new $generatedInjector($injector);
        }

        return $injector;
    }
}