@@ -81,7 +81,7 @@ discard block |
||
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 |
||
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 | /** |