Test Failed
Push — master ( df0f49...c2d884 )
by Christofer
02:26
created
src/Models/Curl.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
 
17 17
     public function cUrlMulti(array $url)
18 18
     {
19
-        $chandle= [];
19
+        $chandle = [];
20 20
         $mhandle = curl_multi_init();
21
-        for ($i=0; $i < count($url); $i++) {
21
+        for ($i = 0; $i < count($url); $i++) {
22 22
             array_push($chandle, curl_init($url[$i]));
23 23
             curl_setopt($chandle[$i], CURLOPT_RETURNTRANSFER, true);
24 24
             curl_multi_add_handle($mhandle, $chandle[$i]);
@@ -30,14 +30,14 @@  discard block
 block discarded – undo
30 30
         } while ($running);
31 31
 
32 32
         //close the handles
33
-        for ($i=0; $i < count($chandle); $i++) {
33
+        for ($i = 0; $i < count($chandle); $i++) {
34 34
             curl_multi_remove_handle($mhandle, $chandle[$i]);
35 35
         }
36 36
 
37 37
         curl_multi_close($mhandle);
38 38
 
39 39
         $json = [];
40
-        for ($i=0; $i < count($chandle); $i++) {
40
+        for ($i = 0; $i < count($chandle); $i++) {
41 41
             array_push($json, curl_multi_getcontent($chandle[$i]));
42 42
         }
43 43
         return $json;
Please login to merge, or discard this patch.
view/weather/weatherOld.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     ?>
14 14
     <div class="container days">
15 15
     <?php
16
-    for ($i=0; $i < count($weather); $i++) {
16
+    for ($i = 0; $i < count($weather); $i++) {
17 17
         ?>
18 18
         <div class="container card day">
19 19
             <i class="<?=$weather[$i]["daily"]["data"][0]["icon"]?>"></i>
Please login to merge, or discard this patch.
config/di/darksky.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
     "services" => [
7 7
         "darksky" => [
8 8
             "shared" => true,
9
-            "callback" => function () {
9
+            "callback" => function() {
10 10
                 // Load the configuration files
11 11
                 $cfg = $this->get("configuration");
12 12
                 $config = $cfg->load("darksky.php");
Please login to merge, or discard this patch.
config/di/ipstack.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
     "services" => [
7 7
         "ipstack" => [
8 8
             "shared" => true,
9
-            "callback" => function () {
9
+            "callback" => function() {
10 10
                 // Load the configuration files
11 11
                 $cfg = $this->get("configuration");
12 12
                 $config = $cfg->load("ipstack.php");
Please login to merge, or discard this patch.
config/di/mapquest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
     "services" => [
7 7
         "mapquest" => [
8 8
             "shared" => true,
9
-            "callback" => function () {
9
+            "callback" => function() {
10 10
                 // Load the configuration files
11 11
                 $cfg = $this->get("configuration");
12 12
                 $config = $cfg->load("mapquest.php");
Please login to merge, or discard this patch.
src/Models/Location.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,16 +23,16 @@
 block discarded – undo
23 23
         $validateIP = new Models\ValidateIP;
24 24
         $test = $validateIP->validate($ipNumber);
25 25
         if ($test[0]) {
26
-            $location = $getJson->cUrl($ipstack["url"]. $ipNumber. '?access_key='. $ipstack["key"]);
26
+            $location = $getJson->cUrl($ipstack["url"].$ipNumber.'?access_key='.$ipstack["key"]);
27 27
             $location = json_decode($location, true);
28 28
             $latitude = $location["latitude"];
29 29
             $longitude = $location["longitude"];
30 30
             $location = [$location["city"], $latitude, $longitude];
31 31
         } else {
32
-            $search = array('å','ä','ö');
33
-            $replace = array('a','a','o');
32
+            $search = array('å', 'ä', 'ö');
33
+            $replace = array('a', 'a', 'o');
34 34
             $ipNumber = str_replace($search, $replace, $ipNumber);
35
-            $location = $getJson->cUrl($mapquest["url"]. $mapquest["key"]. $mapquest["extra"]. $ipNumber);
35
+            $location = $getJson->cUrl($mapquest["url"].$mapquest["key"].$mapquest["extra"].$ipNumber);
36 36
             $location = json_decode($location, true);
37 37
             $latitude = $location["results"][0]["locations"][0]["latLng"]["lat"];
38 38
             $longitude = $location["results"][0]["locations"][0]["latLng"]["lng"];
Please login to merge, or discard this patch.
src/Controller/WeatherController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
         $api = $this->di->get("ipstack");
19 19
         $ipstack = $api["config"];
20 20
         $getipInfo = new Models\Curl;
21
-        $extra =  "&fields=ip";
22
-        $userIp =  $getipInfo->cUrl($ipstack["url"]. "check". '?access_key='. $ipstack["key"]. $extra);
21
+        $extra = "&fields=ip";
22
+        $userIp = $getipInfo->cUrl($ipstack["url"]."check".'?access_key='.$ipstack["key"].$extra);
23 23
         $apiResult = json_decode($userIp, true);
24 24
 
25 25
         $session->set("userIp", $apiResult["ip"]);
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
         $extra = "?lang=sv&units=auto";
76 76
         $mapDiv = $map->getMap($latitude, $longitude);
77
-        $weatherJson = $getJson->cUrl($darksky["url"]. $darksky["key"]. "/". $latitude. ",". $longitude. $extra);
77
+        $weatherJson = $getJson->cUrl($darksky["url"].$darksky["key"]."/".$latitude.",".$longitude.$extra);
78 78
 
79 79
         $weather = json_decode($weatherJson, true);
80 80
         $page->add("weather/weather", [
@@ -131,16 +131,16 @@  discard block
 block discarded – undo
131 131
         $url = [];
132 132
         $extra = "?lang=sv&units=auto";
133 133
         $time  = time() - (30 * 24 * 60 * 60);
134
-        for ($i=0; $i < 31; $i++) {
135
-            $time  = time() - ($i * 24 * 60 * 60);
136
-            array_push($url, $darksky["url"]. $darksky["key"]. "/". $latitude. ",". $longitude. ",". $time. $extra);
134
+        for ($i = 0; $i < 31; $i++) {
135
+            $time = time() - ($i * 24 * 60 * 60);
136
+            array_push($url, $darksky["url"].$darksky["key"]."/".$latitude.",".$longitude.",".$time.$extra);
137 137
         }
138 138
 
139 139
 
140 140
         $mapDiv = $map->getMap($latitude, $longitude);
141 141
         $weatherJson = $getJson->cUrlMulti($url);
142 142
         $weather = [];
143
-        for ($i=0; $i < count($weatherJson); $i++) {
143
+        for ($i = 0; $i < count($weatherJson); $i++) {
144 144
             array_push($weather, json_decode($weatherJson[$i], true));
145 145
         }
146 146
 
Please login to merge, or discard this patch.