Пример #1
0
 /**
  * @param ServiceLocatorInterface $sl
  * @return \User\Service\User
  */
 public function createService(ServiceLocatorInterface $sl)
 {
     $service = new User();
     $service->setAuthService($sl->get('User\\Service\\Auth'));
     return $service;
 }