Passed
Branch master (98c079)
by Fabrice
01:56
created
Category
src/FileLock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -271,14 +271,14 @@
 block discarded – undo
271 271
         if ($this->lockWait > 300) {
272 272
             $wait = (int) $this->lockWait;
273 273
 
274
-            return function () use ($wait) {
274
+            return function() use ($wait) {
275 275
                 sleep($wait);
276 276
             };
277 277
         }
278 278
 
279 279
         $wait = (int) ($this->lockWait * 1000000);
280 280
 
281
-        return function () use ($wait) {
281
+        return function() use ($wait) {
282 282
             usleep($wait);
283 283
         };
284 284
     }
Please login to merge, or discard this patch.