Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/laminas/laminas-di/src/
Upload File :
Current File : //home/rtorresani/www/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
{
    /**
     * @psalm-suppress MixedAssignment Laminas config is an untyped array - types should be ensured internally
     * @psalm-suppress MixedArrayAccess Laminas config is an untyped array - types should be ensured internally
     * @param string $name
     * @param callable():InjectorInterface $callback
     */
    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)) {
            /** @psalm-var class-string<InjectorInterface> $generatedInjector */
            return new $generatedInjector($injector);
        }

        return $injector;
    }
}