Passed
Push — main ( 5cf45d...483db1 )
by Johan
02:14
created
view/weather/validIP.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         <h3><?= $ip . $isValidMessage; ?>
24 24
 <?php
25 25
 if ($isValidIPv4) {
26
-      echo " (IPv4)";
26
+        echo " (IPv4)";
27 27
 } elseif ($isValidIPv6) {
28 28
     echo " (IPv6)";
29 29
 }
Please login to merge, or discard this patch.
src/Weather/WeatherController.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
 
46 46
 
47 47
     /**
48
-    * This is the index method action, it handles:
49
-    * ANY METHOD mountpoint
50
-    * ANY METHOD mountpoint/
51
-    * ANY METHOD mountpoint/index
52
-    *
53
-    * @return object
54
-    */
48
+     * This is the index method action, it handles:
49
+     * ANY METHOD mountpoint
50
+     * ANY METHOD mountpoint/
51
+     * ANY METHOD mountpoint/index
52
+     *
53
+     * @return object
54
+     */
55 55
     public function indexActionGet(): object
56 56
     {
57 57
         $request     = $this->di->get("request");
@@ -117,13 +117,13 @@  discard block
 block discarded – undo
117 117
     }
118 118
 
119 119
     /**
120
-    * This is the index method action, it handles:
121
-    * ANY METHOD mountpoint
122
-    * ANY METHOD mountpoint/
123
-    * ANY METHOD mountpoint/index
124
-    *
125
-    * @return object
126
-    */
120
+     * This is the index method action, it handles:
121
+     * ANY METHOD mountpoint
122
+     * ANY METHOD mountpoint/
123
+     * ANY METHOD mountpoint/index
124
+     *
125
+     * @return object
126
+     */
127 127
     public function indexActionPost(): object
128 128
     {
129 129
         $request     = $this->di->get("request");
Please login to merge, or discard this patch.
src/Weather/WeatherControllerAPI.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
 
46 46
 
47 47
         /**
48
-    * This is the index method action, it handles:
49
-    * ANY METHOD mountpoint
50
-    * ANY METHOD mountpoint/
51
-    * ANY METHOD mountpoint/index
52
-    *
53
-    * @return object
54
-    */
48
+         * This is the index method action, it handles:
49
+         * ANY METHOD mountpoint
50
+         * ANY METHOD mountpoint/
51
+         * ANY METHOD mountpoint/index
52
+         *
53
+         * @return object
54
+         */
55 55
     public function indexActionGet(): array
56 56
     {
57 57
         $request     = $this->di->get("request");
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-    * This is the index method action, it handles:
99
-    * ANY METHOD mountpoint
100
-    * ANY METHOD mountpoint/
101
-    * ANY METHOD mountpoint/index
102
-    *
103
-    * @return object
104
-    */
98
+     * This is the index method action, it handles:
99
+     * ANY METHOD mountpoint
100
+     * ANY METHOD mountpoint/
101
+     * ANY METHOD mountpoint/index
102
+     *
103
+     * @return object
104
+     */
105 105
     public function indexActionPost(): array
106 106
     {
107 107
         $request     = $this->di->get("request");
Please login to merge, or discard this patch.