Test Setup Failed
Branch master (a3b4c0)
by Herberto
03:39
created
src/Lock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,11 +73,11 @@
 block discarded – undo
73 73
 
74 74
         $this->fileSystem->writeFile($this->getLockFilePath(), $myPid ?? getmypid());
75 75
 
76
-        if (! $this->lockExists()) {
76
+        if (!$this->lockExists()) {
77 77
             throw new CouldNotCreateLockException();
78 78
         }
79 79
 
80
-        if (! $this->isMine()) {
80
+        if (!$this->isMine()) {
81 81
             throw new CouldNotCreateLockException('Another process somehow locked before us!');
82 82
         }
83 83
 
Please login to merge, or discard this patch.