Gets the 'baz' service.
This service is shared. This method always returns the same instance of the service.
Baz A Baz instance.
protected function getBazService() {
$this->services['baz'] = $instance = new \Baz();
$instance
->setFoo($this
->get('foo_with_inline'));
return $instance;
}