Completed
Push — master ( e4fdf5...c9f25d )
by Camilo
13s queued 11s
created
src/HttpClientRequestHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,14 +84,14 @@
 block discarded – undo
84 84
     {
85 85
         return $request->then(
86 86
             // Promise fulfilled
87
-            static function (ResponseInterface $response) {
87
+            static function(ResponseInterface $response) {
88 88
                 return new TelegramResponse(
89 89
                     $response->getBody()->getContents(),
90 90
                     $response->getHeaders()
91 91
                 );
92 92
             },
93 93
             // Promise rejected
94
-            static function (Exception $e) {
94
+            static function(Exception $e) {
95 95
                 if ($e instanceof ResponseException) {
96 96
                     throw ClientException::fromResponseException($e);
97 97
                 }
Please login to merge, or discard this patch.