Newscoop\Service\Implementation\OutputSettingSectionServiceDoctrine::getOutputService PHP Method

getOutputService() public method

Provides the ouput service.
public getOutputService ( ) : Newscoop\Service\IOutputService
return 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;
    }