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