mirror of
https://github.com/werkraum-media/events.git
synced 2025-04-22 18:40:53 +02:00
Ensure the parameters are passed on to new generated links. Cover things with tests. Relates: #11574
15 lines
375 B
PHP
15 lines
375 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('WerkraumMedia\\EventsExample\\', '../Classes/*');
|
|
};
|