14 lines
331 B
PHP
14 lines
331 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
|
||
|
|
||
|
return function (ContainerConfigurator $container): void {
|
||
|
$services = $container->services()
|
||
|
->defaults()
|
||
|
->autowire()
|
||
|
->autoconfigure();
|
||
|
|
||
|
$services->load('DoctrineFixtures\\', '../fixtures');
|
||
|
};
|