Completed
Push — master ( 84f800...507a89 )
by Derek Stephen
01:31
created
src/Validator/FileExtensionValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,8 +37,8 @@
 block discarded – undo
37 37
         $validExtensions = $this->validExtensions;
38 38
         $last = array_pop($validExtensions);
39 39
         $extensions = implode(', ', $validExtensions);
40
-        $extensions .= ' or ' . $last;
40
+        $extensions .= ' or '.$last;
41 41
 
42
-        return ['The file must be either a ' . $extensions . ' file.'];
42
+        return ['The file must be either a '.$extensions.' file.'];
43 43
     }
44 44
 }
45 45
\ No newline at end of file
Please login to merge, or discard this patch.