/**
* Gets the public 'BAR' shared service.
*
* @return \stdClass
*/
protected static function getBARService($container) { $container->services
['BAR'
] =
$instance =
new \
stdClass();
$instance->bar =
($container->services
['bar'
] ?? self::
getBar3Service($container));
return $instance;
} /**
* Gets the public 'BAR2' shared service.
*
* @return \stdClass
*/
protected static function getBAR2Service($container) {