Test Failed
Push — feature/decoupled ( c4bc49...46513e )
by Webysther
02:21
created
src/Mirror.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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.
Please login to merge, or discard this patch.
src/Http.php 1 patch
Spacing   +3 added lines, -3 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.
@@ -145,13 +145,13 @@  discard block
 block discarded – undo
145 145
             $this->connections = $this->maxConnections * $mirrors;
146 146
         }
147 147
 
148
-        $fulfilled = function ($response, $path) use ($success, $complete) {
148
+        $fulfilled = function($response, $path) use ($success, $complete) {
149 149
             $body = (string) $response->getBody();
150 150
             $success($body, $path);
151 151
             $complete();
152 152
         };
153 153
 
154
-        $rejected = function ($reason, $path) use ($complete) {
154
+        $rejected = function($reason, $path) use ($complete) {
155 155
             $this->poolErrors[$path] = $reason;
156 156
             $complete();
157 157
         };
Please login to merge, or discard this patch.