Passed
Push — master ( 51cba3...dc9091 )
by Peter
03:11
created
src/Assets/CacheManager/Flysystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public function __construct()
30 30
     {
31
-        $this->isFlushable = function ($obj) {
31
+        $this->isFlushable = function($obj) {
32 32
             if (!is_array($obj) && !($obj instanceof ArrayAccess)) {
33 33
                 throw new InvalidArgumentException("isFlushable requires an array or \ArrayAccess, received object is not: %s", get_class($obj));
34 34
             }
Please login to merge, or discard this patch.
tests/Filesystem/UploaderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
     {
273 273
         $this->sut = new Uploader($this->filesystemMock);
274 274
 
275
-        $fooPathFactory = function ($filename) {
275
+        $fooPathFactory = function($filename) {
276 276
             return "/foo-base-dir/$filename";
277 277
         };
278 278
 
Please login to merge, or discard this patch.