methodMap = array( 'service_from_anonymous_factory' => 'getServiceFromAnonymousFactoryService', 'service_with_method_call_and_factory' => 'getServiceWithMethodCallAndFactoryService', ); } /** * Gets the public 'service_from_anonymous_factory' shared service. * * @return \Bar\FooClass */ protected function getServiceFromAnonymousFactoryService() { return $this->services['service_from_anonymous_factory'] = call_user_func(array(new \Bar\FooClass(), 'getInstance')); } /** * Gets the public 'service_with_method_call_and_factory' shared service. * * @return \Bar\FooClass */ protected function getServiceWithMethodCallAndFactoryService() { $this->services['service_with_method_call_and_factory'] = $instance = new \Bar\FooClass(); $instance->setBar(\Bar\FooClass::getInstance()); return $instance; } }