1 | <?php namespace Geocoder\Laravel; |
||
14 | class GeocoderProviderAggregatorAdapter |
||
15 | { |
||
16 | protected $aggregator; |
||
17 | |||
18 | public function __construct(int $limit = Geocoder::DEFAULT_RESULT_LIMIT) |
||
22 | |||
23 | public function geocodeQuery($query) |
||
27 | |||
28 | public function reverseQuery($query) |
||
32 | |||
33 | public function getName() |
||
37 | |||
38 | public function geocode($value) |
||
42 | |||
43 | public function reverse(float $latitude, float $longitude) |
||
47 | |||
48 | public function limit($limit) |
||
54 | |||
55 | public function getLimit() |
||
59 | |||
60 | public function registerProvider($provider) |
||
66 | |||
67 | public function registerProviders($providers = []) |
||
73 | |||
74 | public function using($name) |
||
80 | |||
81 | public function getProviders() |
||
85 | |||
86 | protected function getProvider() |
||
90 | } |
||
91 |
This check looks for access to methods that are not accessible from the current context.
If you need to make a method accessible to another context you can raise its visibility level in the defining class.