12 lines
262 B
PHP
Executable File
12 lines
262 B
PHP
Executable File
<?php
|
|
|
|
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
|
|
|
|
use App\BarService;
|
|
|
|
return function (ContainerConfigurator $c) {
|
|
$s = $c->services()->defaults()->public();
|
|
$s->set(BarService::class)
|
|
->args([inline('FooClass')]);
|
|
};
|