/**
* Gets the public 'baz' shared service.
*
* @return \Baz
*/
protected static function getBazService($container) { $container->services
['baz'
] =
$instance =
new \
Baz();
$instance->
setFoo(($container->services
['foo_with_inline'
] ?? self::
getFooWithInlineService($container)));
return $instance;
} /**
* Gets the public 'configured_service' shared service.
*
* @return \stdClass
*/
protected static function getConfiguredServiceService($container) {