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