Passed
Pull Request — master (#1)
by Peter
07:07
created
tests/Assets/CacheManager/FlysystemTest.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
         $this->sut->registerFilesystem(
49 49
             $fs,
50
-            function () {
50
+            function() {
51 51
                 return false;
52 52
             }
53 53
         );
@@ -66,13 +66,13 @@  discard block
 block discarded – undo
66 66
 
67 67
         $this->sut->registerFilesystem(
68 68
             $fs1,
69
-            function () {
69
+            function() {
70 70
                 return false;
71 71
             }
72 72
         );
73 73
         $this->sut->registerFilesystem(
74 74
             $fs2,
75
-            function () {
75
+            function() {
76 76
                 return true;
77 77
             }
78 78
         );
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
         $this->sut->registerFilesystem(
106 106
             $fs,
107
-            function () {
107
+            function() {
108 108
                 return false;
109 109
             }
110 110
         );
@@ -166,13 +166,13 @@  discard block
 block discarded – undo
166 166
 
167 167
         $this->sut->registerFilesystem(
168 168
             $fs1,
169
-            function () {
169
+            function() {
170 170
                 return false;
171 171
             }
172 172
         );
173 173
         $this->sut->registerFilesystem(
174 174
             $fs2,
175
-            function () {
175
+            function() {
176 176
                 return true;
177 177
             }
178 178
         );
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
 
207 207
         $this->sut->registerFilesystem(
208 208
             $fs,
209
-            function () {
209
+            function() {
210 210
                 return false;
211 211
             }
212 212
         );
@@ -254,13 +254,13 @@  discard block
 block discarded – undo
254 254
 
255 255
         $this->sut->registerFilesystem(
256 256
             $fs1,
257
-            function () {
257
+            function() {
258 258
                 return false;
259 259
             }
260 260
         );
261 261
         $this->sut->registerFilesystem(
262 262
             $fs2,
263
-            function () {
263
+            function() {
264 264
                 return true;
265 265
             }
266 266
         );
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
     public function testFlushUsesSetIsFlushableCallback()
385 385
     {
386 386
         $this->sut->setIsFlushable(
387
-            function ($obj) {
387
+            function($obj) {
388 388
                 if ($obj['path'] === 'protected') {
389 389
                     return false;
390 390
                 }
Please login to merge, or discard this patch.