1 | <?php |
||
12 | class PlaceClient extends Client implements PlaceClientInterface |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | protected $apiUrl = 'https://maps.googleapis.com/maps/api/place'; |
||
18 | |||
19 | /** |
||
20 | * @var PlaceHydrator |
||
21 | */ |
||
22 | private $placeHydrator; |
||
23 | |||
24 | public function __construct( |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function nearbysearch(array $params) |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function textsearch(array $params) |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function details(array $params) |
||
68 | } |
||
69 |