@@ -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. |
@@ -150,13 +150,13 @@ discard block |
||
| 150 | 150 | $this->connections = $this->maxConnections * $mirrors; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - $fulfilled = function ($response, $path) use ($success, $complete) { |
|
| 153 | + $fulfilled = function($response, $path) use ($success, $complete) { |
|
| 154 | 154 | $body = (string) $response->getBody(); |
| 155 | 155 | $success($body, $path); |
| 156 | 156 | $complete(); |
| 157 | 157 | }; |
| 158 | 158 | |
| 159 | - $rejected = function ($reason, $path) use ($complete) { |
|
| 159 | + $rejected = function($reason, $path) use ($complete) { |
|
| 160 | 160 | $uri = $reason->getRequest()->getUri(); |
| 161 | 161 | $host = $uri->getScheme().'://'.$uri->getHost(); |
| 162 | 162 | |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | */ |
| 216 | 216 | public function getTotalErrorByMirror(string $mirror):int |
| 217 | 217 | { |
| 218 | - if(!isset($this->poolErrorsCount[$mirror])){ |
|
| 218 | + if (!isset($this->poolErrorsCount[$mirror])) { |
|
| 219 | 219 | return 0; |
| 220 | 220 | } |
| 221 | 221 | |
@@ -276,7 +276,7 @@ |
||
| 276 | 276 | |
| 277 | 277 | foreach ($mirrors as $mirror) { |
| 278 | 278 | $total = $this->http->getTotalErrorByMirror($mirror); |
| 279 | - if($total < 1000){ |
|
| 279 | + if ($total < 1000) { |
|
| 280 | 280 | continue; |
| 281 | 281 | } |
| 282 | 282 | |