GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 105235...11f67e )
by Robert
10:42
created
src/Console/CommandBuilder.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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
     private function createCode(Api\Api $api, $name, \ReflectionMethod $method): \Closure
123 123
     {
124
-        return function (InputInterface $input, OutputInterface $output) use ($name, $method, $api) {
124
+        return function(InputInterface $input, OutputInterface $output) use ($name, $method, $api) {
125 125
             $fn = $method->getClosure($api);
126 126
 
127 127
             $options = $this->caseTransformArray($input->getOptions());
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 
151 151
     private function caseTransformArray(array $values): array
152 152
     {
153
-        return array_combine(array_map(function ($name) {
153
+        return array_combine(array_map(function($name) {
154 154
             return CaseFormatter::dashToCamel($name);
155 155
         }, array_keys($values)), array_values($values));
156 156
     }
Please login to merge, or discard this patch.
src/Api/ApiParser.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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     {
42 42
         return $this->client
43 43
             ->sendAsyncRequest($this->messageFactory->createRequest('GET', $url))
44
-            ->then(function (ResponseInterface $response) use ($prefix) {
44
+            ->then(function(ResponseInterface $response) use ($prefix) {
45 45
                 return $this->buildMethods($response, $prefix);
46 46
             })
47 47
             ->wait()
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     private function buildMethods(ResponseInterface $response, $prefix): array
52 52
     {
53 53
         $this->crawler->addHtmlContent($response->getBody()->getContents());
54
-        $links = $this->crawler->filter('li a[href^="' . $prefix . '"]')->each(function (Crawler $node) {
54
+        $links = $this->crawler->filter('li a[href^="' . $prefix . '"]')->each(function(Crawler $node) {
55 55
             return $node->attr('href');
56 56
         });
57 57
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         if ($argumentsRootNode->getNode(0)->nodeName === 'ul') {
90 90
             $names = [];
91 91
 
92
-            return $argumentsRootNode->filter('li')->each(function (Crawler $argument) use (&$names) {
92
+            return $argumentsRootNode->filter('li')->each(function(Crawler $argument) use (&$names) {
93 93
                 $description = $argument->filter('code')->first()->getNode(0)->nextSibling->textContent;
94 94
                 $name = CaseFormatter::dashToCamel($argument->filter('code')->first()->text());
95 95
                 if (!isset($names[$name])) {
Please login to merge, or discard this patch.
src/Driver/Http.php 1 patch
Spacing   +2 added lines, -2 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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $request = $this->buildRequest($command, $this->getConfig($command));
70 70
 
71
-        return $this->client->sendAsyncRequest($request)->then(function (ResponseInterface $response) {
71
+        return $this->client->sendAsyncRequest($request)->then(function(ResponseInterface $response) {
72 72
             return $response->getBody()->getContents();
73 73
         })->wait();
74 74
     }
Please login to merge, or discard this patch.
src/Driver/Client.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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Please login to merge, or discard this patch.
src/Console/ApiBuildCommand.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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Please login to merge, or discard this patch.
src/Console/ApiCommand.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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Please login to merge, or discard this patch.
src/Annotation/Api.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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Please login to merge, or discard this patch.
src/Annotation/Param.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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Please login to merge, or discard this patch.
src/Api/Pin.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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Please login to merge, or discard this patch.