Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class Ivao extends MetarHTTPClient implements MetarProviderInterface |
||
23 | { |
||
24 | |||
25 | private $serviceUrl = 'http://wx.ivao.aero/metar.php/?id={{_ICAO_}}'; |
||
26 | private $icao; |
||
27 | |||
28 | 2 | public function __construct($icao) |
|
29 | { |
||
30 | 2 | $this->icao = $icao; |
|
31 | 2 | } |
|
32 | |||
33 | 2 | private function getMetarDataString() |
|
38 | } |
||
39 | |||
40 | 2 | public function __toString() |
|
43 | } |
||
44 | } |
||
45 |