@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * This file is part of the Packagist Mirror. |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | return $this; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - if (strpos($link, 'vfs://') !== false){ |
|
| 193 | + if (strpos($link, 'vfs://') !== false) { |
|
| 194 | 194 | return $this; |
| 195 | 195 | } |
| 196 | 196 | |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | $this->delete($target); |
| 244 | 244 | } |
| 245 | 245 | |
| 246 | - retry(8, function () use ($from, $target) { |
|
| 246 | + retry(8, function() use ($from, $target) { |
|
| 247 | 247 | $this->filesystem->rename($this->getGzName($from), $target); |
| 248 | 248 | }, 250); |
| 249 | 249 | |