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

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

Get service object to perform operations on Location objects and subtrees
public getLocationService ( ) : eZ\Publish\API\Repository\LocationService
Результат eZ\Publish\API\Repository\LocationService
    public function getLocationService()
    {
        if (null === $this->locationService) {
            $this->locationService = new LocationService($this->client, $this->inputDispatcher, $this->outputVisitor, $this->requestParser);
        }
        return $this->locationService;
    }