| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 10 | trait CWSingleResultTrait |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var array Hold query parameters for api call. |
||
| 14 | */ |
||
| 15 | protected $params; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string Part of the api link. |
||
| 19 | */ |
||
| 20 | protected $apiCall; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Return APi call result as CurrentWeather object. |
||
| 24 | * @return CurrentWeather |
||
| 25 | */ |
||
| 26 | public function get(): CurrentWeather |
||
| 31 |