Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | 1 | public function indexAction() : array |
|
17 | { |
||
18 | 1 | $city = $this->di->request->getGet("city"); |
|
|
|||
19 | 1 | $cnt = $this->di->request->getGet("cnt"); |
|
20 | 1 | $weatherModel = $this->di->get("weatherhelper"); |
|
21 | 1 | $days = explode(" ", $cnt); |
|
22 | |||
23 | 1 | $info = $weatherModel->getUsersThroughMultiCurl($days, $city); |
|
24 | |||
25 | 1 | return [$info]; |
|
26 | } |
||
28 |