Passed
Branch master (eb004c)
by Adrian Florin
02:26
created
src/File.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             );
82 82
         }
83 83
         list($this->name, $this->extension) = $pathHelper->splitFilename($filename);
84
-        $this->hasExtension = (bool)$this->extension;
84
+        $this->hasExtension = (bool) $this->extension;
85 85
         $this->errorHandler = new ErrorToExceptionConverter();
86 86
     }
87 87
 
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
         if (false === $this->hasExtension()) {
213 213
             return $this->name;
214 214
         }
215
-        return $this->name . static::EXTENSION_SEPARATOR . $this->extension;
215
+        return $this->name.static::EXTENSION_SEPARATOR.$this->extension;
216 216
     }
217 217
 
218 218
     /**
Please login to merge, or discard this patch.