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

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

Get RoleService.
public getRoleService ( ) : eZ\Publish\API\Repository\RoleService
Результат eZ\Publish\API\Repository\RoleService
    public function getRoleService()
    {
        if (null === $this->roleService) {
            $this->roleService = new RoleService($this->getUserService(), $this->client, $this->inputDispatcher, $this->outputVisitor, $this->requestParser);
        }
        return $this->roleService;
    }