Passed
Push — 1.1 ( 616134...803478 )
by David
03:36
created
lib/GitHub/AbstractApi.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
                 break;
518 518
         }
519 519
 
520
-        $curl->success(function (CurlClient $instance) {
520
+        $curl->success(function(CurlClient $instance) {
521 521
             $this->headers = $instance->getHeaders();
522 522
             $this->success = $instance->getResponse();
523 523
             $data          = json_decode($this->success, true);
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
                 $this->success = $data;
526 526
             }
527 527
         });
528
-        $curl->error(function (CurlClient $instance) {
528
+        $curl->error(function(CurlClient $instance) {
529 529
             $this->headers = $instance->getHeaders();
530 530
             $this->failure = $instance->getResponse();
531 531
             $data          = json_decode($this->failure, true);
Please login to merge, or discard this patch.