Completed
Pull Request — master (#101)
by Alexander
03:24
created
src/Adapter/AbstractAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,6 +247,6 @@
 block discarded – undo
247 247
             throw new InvalidArgumentException(sprintf('Target path %s is not writeable.', $directory));
248 248
         }
249 249
 
250
-        return realpath($directory).'/'.PathUtil::basename($path);
250
+        return realpath($directory) . '/' . PathUtil::basename($path);
251 251
     }
252 252
 }
Please login to merge, or discard this patch.
src/Resource/Resource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
             return null;
88 88
         }
89 89
 
90
-        if (PathUtil::basename($this->original)  === $this->target) {
90
+        if (PathUtil::basename($this->original) === $this->target) {
91 91
             return dirname($this->original);
92 92
         }
93 93
     }
Please login to merge, or discard this patch.