mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
16 lines
397 B
PHP
16 lines
397 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
|
||
|
|
||
|
return static function (ContainerConfigurator $containerConfigurator) {
|
||
|
$services = $containerConfigurator->services()
|
||
|
->defaults()
|
||
|
->autowire()
|
||
|
->autoconfigure();
|
||
|
|
||
|
$services->load('TTN\\Tea\\', '../Classes/*')
|
||
|
->exclude('../Classes/Domain/Model/*');
|
||
|
};
|