for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\Di;
use Psr\Container\ContainerInterface;
final class ContainerDelegator extends AbstractContainerConfigurator
{
private Container $container;
public function __construct(Container $container)
$this->container = $container;
}
public function delegateLookup(ContainerInterface $container): void
$this->container->delegateLookup($container);