mirror of
https://github.com/werkraum-media/events.git
synced 2025-03-26 17:03:47 +01: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/*');
|
|
};
|