@@ -73,11 +73,11 @@ |
||
| 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 | |