123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- declare(strict_types=1);
- namespace Geocoder\Query;
- interface Query
- {
-
- public function withLocale(string $locale);
-
- public function withLimit(int $limit);
-
- public function withData(string $name, $value);
-
- public function getLocale();
-
- public function getLimit(): int;
-
- public function getData(string $name, $default = null);
-
- public function getAllData(): array;
-
- public function __toString();
- }
|