1 | <?php |
||
9 | class Resource implements ResourceInterface |
||
10 | { |
||
11 | /** @var ProviderInterface */ |
||
12 | private $provider; |
||
13 | |||
14 | /** @var HttpInterface */ |
||
15 | private $http; |
||
16 | |||
17 | /** |
||
18 | * Constructor |
||
19 | * |
||
20 | * @param ProviderInterface $provider |
||
21 | * @param HttpInterface $http |
||
22 | */ |
||
23 | public function __construct( |
||
30 | |||
31 | /** |
||
32 | * Returns back an instance of LastFM Geo Resource |
||
33 | * |
||
34 | * @return GeoInterface |
||
35 | */ |
||
36 | public function geo() : GeoInterface |
||
40 | } |