Completed
Push — feature/decoupled ( ef93d4...6a89b6 )
by Webysther
02:32
created
src/Http.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Command/Create.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -276,7 +276,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.