| 1 | <?php |
||
| 19 | final class CountryService |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var ConnectionInterface |
||
| 23 | */ |
||
| 24 | private $connection; |
||
| 25 | |||
| 26 | public function __construct(ConnectionInterface $connection) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Search for countries. |
||
| 33 | * |
||
| 34 | * @throws ApiException |
||
| 35 | * @throws NotFoundException |
||
| 36 | */ |
||
| 37 | public function search(): CountrySearchResult |
||
| 47 | } |
||
| 48 |