'subscriber2' => true,
];
} /**
* Gets the public 'bar' shared service.
*
* @return \BarCircular
*/
protected static function getBarService($container) { $container->services
['bar'
] =
$instance =
new \
BarCircular();
$instance->
addFoobar(($container->services
['foobar'
] ?? self::
getFoobarService($container)));
return $instance;
} /**
* Gets the public 'bar3' shared service.
*
* @return \BarCircular
*/