Test Setup Failed
Push — master ( 09e290...352899 )
by Xu
41:32
created
src/base/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
         } elseif (!is_writable($directory)) {
85 85
             throw new FileException(sprintf('Unable to write in the "%s" directory', $directory));
86 86
         }
87
-        $target = rtrim($directory, '/\\').DIRECTORY_SEPARATOR.(null === $name ? $this->getBasename() : $this->getName($name));
87
+        $target = rtrim($directory, '/\\') . DIRECTORY_SEPARATOR . (null === $name ? $this->getBasename() : $this->getName($name));
88 88
         return new self($target, false);
89 89
     }
90 90
 
Please login to merge, or discard this patch.