Newscoop\Service\Implementation\TemplateSearchServiceDoctrine::getSectionService PHP Метод

getSectionService() публичный Метод

Provides the Section service.
public getSectionService ( ) : Newscoop\Service\ISectionService
Результат Newscoop\Service\ISectionService The section service to be used by this controller.
    public function getSectionService()
    {
        if ($this->sectionService === NULL) {
            $this->sectionService = $this->getResourceId()->getService(ISectionService::NAME);
        }
        return $this->sectionService;
    }