Website/config/services.php

19 lines
437 B
PHP
Raw Normal View History

2024-07-30 03:36:45 +00:00
<?php
declare(strict_types=1);
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
return function(ContainerConfigurator $container): void {
$services = $container->services()
->defaults()
->autowire()
->autoconfigure()
;
$services
->load('App\\', '%kernel.project_dir%/src/')
->exclude('%kernel.project_dir%/src/{DependencyInjection,Entity,Kernel.php}')
;
};