@@ -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. |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | */ |
165 | 165 | protected function isGzFile(string $file):bool |
166 | 166 | { |
167 | - if(substr($this->getGzName($file), -3) == '.gz'){ |
|
167 | + if (substr($this->getGzName($file), -3) == '.gz') { |
|
168 | 168 | return true; |
169 | 169 | } |
170 | 170 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | $path = $this->getGzName($file); |
188 | 188 | $link = $this->getLink($path); |
189 | 189 | |
190 | - if($this->hasLink($link)){ |
|
190 | + if ($this->hasLink($link)) { |
|
191 | 191 | return $this; |
192 | 192 | } |
193 | 193 | |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | */ |
230 | 230 | public function move(string $from):Filesystem |
231 | 231 | { |
232 | - if(!$this->has($from)){ |
|
232 | + if (!$this->has($from)) { |
|
233 | 233 | return $this; |
234 | 234 | } |
235 | 235 | |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | */ |
328 | 328 | protected function getFullPath(string $path):string |
329 | 329 | { |
330 | - if(strpos($path, $this->directory) !== false){ |
|
330 | + if (strpos($path, $this->directory) !== false) { |
|
331 | 331 | return $path; |
332 | 332 | } |
333 | 333 |