Completed
Pull Request — master (#52)
by Mark
18s
created
helper/index.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
         if ((!str_ends_with(strtolower($imgId), '.jpg')) &&
215 215
             (!str_ends_with(strtolower($imgId), '.jpeg'))
216 216
         ) {
217
-            Logger::debug("indexImage:: ".$imgId." is not a supported image file.");
217
+            Logger::debug("indexImage:: " . $imgId . " is not a supported image file.");
218 218
             return false;
219 219
         }
220 220
 
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
      * @return Point|false
237 237
      * @throws Exception
238 238
      */
239
-    final public function getCoordsFromExif(string $id): Point|false
239
+    final public function getCoordsFromExif(string $id): Point | false
240 240
     {
241 241
         $exif = exif_read_data(mediaFN($id), 0, true);
242 242
         if (empty($exif ['GPS'])) {
@@ -287,11 +287,11 @@  discard block
 block discarded – undo
287 287
     {
288 288
         // rational64u
289 289
         $nums = explode('/', $param);
290
-        if ((int)$nums[1] > 0) {
291
-            return (float)$nums[0] / (int)$nums[1];
290
+        if (( int ) $nums[1] > 0) {
291
+            return ( float ) $nums[0] / ( int ) $nums[1];
292 292
         }
293 293
 
294
-        return (float)$nums[0];
294
+        return ( float ) $nums[0];
295 295
     }
296 296
 
297 297
     /**
Please login to merge, or discard this patch.