eZ\Publish\Core\REST\Client\Repository::getContentService PHP Метод

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

Get service object to perform operations on Content objects and it's aggregate members.
public getContentService ( ) : eZ\Publish\API\Repository\ContentService
Результат eZ\Publish\API\Repository\ContentService
    public function getContentService()
    {
        if (null === $this->contentService) {
            $this->contentService = new ContentService($this->client, $this->inputDispatcher, $this->outputVisitor, $this->requestParser, $this->getContentTypeService());
        }
        return $this->contentService;
    }