district09/php_package_dg-geopunt-geolocation

View on GitHub
src/Uri/LocationUri.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace DigipolisGent\Geopunt\Geolocation\Uri;

/**
 * Uri to lookup locations based on a given filters.
 */
class LocationUri extends AbstractUriWithQuery
{
    /**
     * @inheritDoc
     */
    protected function getPath(): string
    {
        return 'Location';
    }
}