예제 #1
0
 /**
  * Получает сервис из локатора если он есть
  * или сначала помещает его туда
  *
  * @return object
  */
 public function getService()
 {
     if (!$this->locator->checkService($this->service)) {
         $this->buildService(true);
     }
     return $this->locator->get($this->service);
 }