Completed
Push — development ( 252715...941400 )
by Thomas
44s
created
htdocs/src/Oc/Language/LanguageRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -218,10 +218,10 @@
 block discarded – undo
218 218
         $entity->nativeName = $data['native_name'];
219 219
         $entity->de = $data['de'];
220 220
         $entity->en = $data['en'];
221
-        $entity->translationId = (int) $data['trans_id'];
222
-        $entity->listDefaultDe = (bool) $data['list_default_de'];
223
-        $entity->listDefaultEn = (bool) $data['list_default_en'];
224
-        $entity->isTranslated = (bool) $data['is_translated'];
221
+        $entity->translationId = (int)$data['trans_id'];
222
+        $entity->listDefaultDe = (bool)$data['list_default_de'];
223
+        $entity->listDefaultEn = (bool)$data['list_default_en'];
224
+        $entity->isTranslated = (bool)$data['is_translated'];
225 225
 
226 226
         return $entity;
227 227
     }
Please login to merge, or discard this patch.
htdocs/src/Oc/Country/CountryRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -181,9 +181,9 @@
 block discarded – undo
181 181
         $entity->name = $data['name'];
182 182
         $entity->de = $data['de'];
183 183
         $entity->en = $data['en'];
184
-        $entity->translationId = (int) $data['trans_id'];
185
-        $entity->listDefaultDe = (bool) $data['list_default_de'];
186
-        $entity->listDefaultEn = (bool) $data['list_default_en'];
184
+        $entity->translationId = (int)$data['trans_id'];
185
+        $entity->listDefaultDe = (bool)$data['list_default_de'];
186
+        $entity->listDefaultEn = (bool)$data['list_default_en'];
187 187
         $entity->sortDe = $data['sort_de'];
188 188
         $entity->sortEn = $data['sort_en'];
189 189
 
Please login to merge, or discard this patch.
htdocs/lib2/logic/user.class.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public static function fromEMail($email)
28 28
     {
29
-        $userId = (int) sql_value("SELECT `user_id` FROM `user` WHERE `email`='&1'", 0, $email);
29
+        $userId = (int)sql_value("SELECT `user_id` FROM `user` WHERE `email`='&1'", 0, $email);
30 30
         if ($userId === 0) {
31 31
             return null;
32 32
         }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public static function fromUsername($username)
43 43
     {
44
-        $userId = (int) sql_value("SELECT `user_id` FROM `user` WHERE `username`='&1'", 0, $username);
44
+        $userId = (int)sql_value("SELECT `user_id` FROM `user` WHERE `username`='&1'", 0, $username);
45 45
         if ($userId === 0) {
46 46
             return null;
47 47
         }
Please login to merge, or discard this patch.
htdocs/src/Oc/Libse/Validator/RealValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,6 +37,6 @@
 block discarded – undo
37 37
     {
38 38
         $value = str_replace(',', '.', $value);
39 39
 
40
-        return (float) $value;
40
+        return (float)$value;
41 41
     }
42 42
 }
Please login to merge, or discard this patch.
htdocs/src/Oc/Command/CodeCoverageCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@
 block discarded – undo
56 56
         $checkedElements = 0;
57 57
 
58 58
         foreach ($metrics as $metric) {
59
-            $totalElements += (int) $metric['elements'];
60
-            $checkedElements += (int) $metric['coveredelements'];
59
+            $totalElements += (int)$metric['elements'];
60
+            $checkedElements += (int)$metric['coveredelements'];
61 61
         }
62 62
 
63 63
         $coverage = ($checkedElements / $totalElements) * 100;
Please login to merge, or discard this patch.
htdocs/src/Oc/FieldNotes/Persistence/FieldNoteRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
             $databaseArray
189 189
         );
190 190
 
191
-        $entity->id = (int) $this->connection->lastInsertId();
191
+        $entity->id = (int)$this->connection->lastInsertId();
192 192
 
193 193
         return $entity;
194 194
     }
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
             ['id' => $entity->id]
216 216
         );
217 217
 
218
-        $entity->id = (int) $this->connection->lastInsertId();
218
+        $entity->id = (int)$this->connection->lastInsertId();
219 219
 
220 220
         return $entity;
221 221
     }
Please login to merge, or discard this patch.
htdocs/lib2/rowEditor.class.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
         }
385 385
 
386 386
         if ($type == RE_TYPE_INT) {
387
-            $value = (int) $value + 0;
387
+            $value = (int)$value + 0;
388 388
         } elseif ($type == RE_TYPE_FLOAT) {
389 389
             $value = $value + 0;
390 390
         } elseif ($type == RE_TYPE_DOUBLE) {
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
     public function pFormatValueSql($type, $value)
410 410
     {
411 411
         if ($type == RE_TYPE_INT) {
412
-            $value = (int) $value + 0;
412
+            $value = (int)$value + 0;
413 413
         } elseif ($type == RE_TYPE_FLOAT) {
414 414
             $value = $value + 0;
415 415
         } elseif ($type == RE_TYPE_DOUBLE) {
Please login to merge, or discard this patch.
htdocs/lib2/search/search.gpx.inc.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -140,19 +140,19 @@  discard block
 block discarded – undo
140 140
     $gpxTimeFormat = 'Y-m-d\TH:i:s\Z';
141 141
 
142 142
     $gpxStatus[0] = 'available="False" archived="False"'; // other (unavailable, not archived)
143
-    $gpxStatus[1] = 'available="True" archived="False"';  // available, not archived
143
+    $gpxStatus[1] = 'available="True" archived="False"'; // available, not archived
144 144
     $gpxStatus[2] = 'available="False" archived="False"'; // unavailable, not archived
145
-    $gpxStatus[3] = 'available="False" archived="True"';  // unavailable, archived
146
-    $gpxStatus[6] = 'available="False" archived="True"';  // locked, visible
145
+    $gpxStatus[3] = 'available="False" archived="True"'; // unavailable, archived
146
+    $gpxStatus[6] = 'available="False" archived="True"'; // locked, visible
147 147
 
148 148
     $gpxContainer[1] = 'Other';
149 149
     $gpxContainer[2] = 'Micro';
150 150
     $gpxContainer[3] = 'Small';
151 151
     $gpxContainer[4] = 'Regular';
152 152
     $gpxContainer[5] = 'Large';
153
-    $gpxContainer[6] = 'Large';     // very large
154
-    $gpxContainer[7] = 'Virtual';   // no container
155
-    $gpxContainer[8] = 'Micro';     // nano
153
+    $gpxContainer[6] = 'Large'; // very large
154
+    $gpxContainer[7] = 'Virtual'; // no container
155
+    $gpxContainer[8] = 'Micro'; // nano
156 156
 
157 157
     $gpxOcSize[1] = 'Other';
158 158
     $gpxOcSize[2] = 'Micro';
@@ -169,10 +169,10 @@  discard block
 block discarded – undo
169 169
     $gpxType[4] = 'Virtual Cache';
170 170
     $gpxType[5] = 'Webcam Cache';
171 171
     $gpxType[6] = 'Event Cache';
172
-    $gpxType[7] = 'Unknown Cache';        // quiz cache
173
-    $gpxType[8] = 'Unknown Cache';        // maths/physics cache
174
-    $gpxType[9] = 'Unknown Cache';        // moving cache
175
-    $gpxType[10] = 'Traditional Cache';   // drive-in cache
172
+    $gpxType[7] = 'Unknown Cache'; // quiz cache
173
+    $gpxType[8] = 'Unknown Cache'; // maths/physics cache
174
+    $gpxType[9] = 'Unknown Cache'; // moving cache
175
+    $gpxType[10] = 'Traditional Cache'; // drive-in cache
176 176
 
177 177
     $gpxOcType[1] = 'Other Cache';
178 178
     $gpxOcType[2] = 'Traditional Cache';
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     $gpxOcType[5] = 'Webcam Cache';
182 182
     $gpxOcType[6] = 'Event Cache';
183 183
     $gpxOcType[7] = 'Quiz Cache';
184
-    $gpxOcType[8] = 'Quiz Cache';         // maths/physics cache
184
+    $gpxOcType[8] = 'Quiz Cache'; // maths/physics cache
185 185
     $gpxOcType[9] = 'Moving Cache';
186 186
     $gpxOcType[10] = 'Traditional Cache'; // drive-in cache
187 187
 
@@ -194,8 +194,8 @@  discard block
 block discarded – undo
194 194
     $gpxLogType[9] = 'Archive';
195 195
     $gpxLogType[10] = 'Owner Maintenance';
196 196
     $gpxLogType[11] = 'Temporarily Disable Listing';
197
-    $gpxLogType[13] = 'Archive';          // locked
198
-    $gpxLogType[14] = 'Archive';          // locked/invisible
197
+    $gpxLogType[13] = 'Archive'; // locked
198
+    $gpxLogType[14] = 'Archive'; // locked/invisible
199 199
 
200 200
     $gpxSymNormal = 'Geocache';
201 201
     $gpxSymFound = 'Geocache Found';
@@ -524,9 +524,9 @@  discard block
 block discarded – undo
524 524
         $thisline = mb_ereg_replace('{oc_logs}', $oc_logentries, $thisline);
525 525
 
526 526
         // attributes
527
-        $addAttributes = [-1];  // dummy
527
+        $addAttributes = [-1]; // dummy
528 528
         if ($r['type'] == 10) {   // Drive-in
529
-            $addAttributes[] = 24;  // near the car / park and grab
529
+            $addAttributes[] = 24; // near the car / park and grab
530 530
         }
531 531
         $rsAttributes = sql_slave(
532 532
             "
Please login to merge, or discard this patch.
htdocs/lib2/search/search.ov2.inc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         $cacheid = convert_string($r['wp_oc']);
67 67
 
68 68
         $line = "$name by $username, $type, $size, $cacheid";
69
-        $record = pack('CLllA*x', 2, 1 + 4 + 4 + 4 + strlen($line) + 1, (int) $lon, (int) $lat, $line);
69
+        $record = pack('CLllA*x', 2, 1 + 4 + 4 + 4 + strlen($line) + 1, (int)$lon, (int)$lat, $line);
70 70
 
71 71
         append_output($record);
72 72
     }
Please login to merge, or discard this patch.