Completed
Push — master ( 8c6676...8a9f3c )
by Fabrice
02:06
created
src/FileLock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -257,14 +257,14 @@
 block discarded – undo
257 257
         if ($this->lockWait > 300) {
258 258
             $wait = (int) $this->lockWait;
259 259
 
260
-            return function () use ($wait) {
260
+            return function() use ($wait) {
261 261
                 sleep($wait);
262 262
             };
263 263
         }
264 264
 
265 265
         $wait = (int) ($this->lockWait * 1000000);
266 266
 
267
-        return function () use ($wait) {
267
+        return function() use ($wait) {
268 268
             usleep($wait);
269 269
         };
270 270
     }
Please login to merge, or discard this patch.