Test Failed
Push — develop ( 260538...f21c4e )
by Daniel
12:49
created
src/Uploader/FileUploader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@
 block discarded – undo
40 40
 
41 41
         $ext = $file->guessExtension();
42 42
         $basename = pathinfo($file->getClientOriginalName(), PATHINFO_FILENAME);
43
-        $filename = $basename.'.'.$ext;
44
-        $i=0;
43
+        $filename = $basename . '.' . $ext;
44
+        $i = 0;
45 45
         while ($fs->exists($this->getRealPath($filename))) {
46 46
             $i++;
47
-            $filename = $basename.".$i.$ext";
47
+            $filename = $basename . ".$i.$ext";
48 48
         }
49 49
         return $filename;
50 50
     }
Please login to merge, or discard this patch.
src/Serializer/ImageMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         }
53 53
 
54 54
         [$this->width, $this->height] = getimagesize($filePath);
55
-        $this->imagineKey= $imagineKey;
55
+        $this->imagineKey = $imagineKey;
56 56
     }
57 57
 
58 58
     /**
Please login to merge, or discard this patch.