'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\Foo' => true,
];
} /**
* Gets the public 'inlined_current' shared service.
*
* @return \Symfony\Component\DependencyInjection\Tests\Compiler\Foo
*/
protected static function getInlinedCurrentService($container) { return $container->services
['inlined_current'
] =
($container->privates
['Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\Foo'
] ??=
new \Symfony\Component\DependencyInjection\Tests\Compiler\
Foo());
} /**
* Gets the public 'not_inlined_current' shared service.
*
* @return \Symfony\Component\DependencyInjection\Tests\Compiler\Foo
*/
protected static function getNotInlinedCurrentService($container) { return $container->services
['not_inlined_current'
] = \
current([($container->privates
['Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\Foo'
] ??=
new \Symfony\Component\DependencyInjection\Tests\Compiler\
Foo()), 123
]);
}}