Newscoop\Service\Implementation\OutputSettingSectionServiceDoctrine::getOutputService PHP 메소드

getOutputService() 공개 메소드

Provides the ouput service.
public getOutputService ( ) : Newscoop\Service\IOutputService
리턴 Newscoop\Service\IOutputService The service service to be used by this controller.
    public function getOutputService()
    {
        if ($this->outputService === NULL) {
            $this->outputService = $this->getResourceId()->getService(IOutputService::NAME);
        }
        return $this->outputService;
    }