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 ( 911369...4d9f58 )
by Robert
06:57
created
src/Console/CommandBuilder.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
@@ -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 = CaseFormatter::dashToCamelArray($input->getOptions());
Please login to merge, or discard this patch.
src/Utils/CaseFormatter.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
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     public static function dashToCamelArray(array $values): array
51 51
     {
52
-        return array_combine(array_map(function ($name) {
52
+        return array_combine(array_map(function($name) {
53 53
             return self::dashToCamel($name);
54 54
         }, array_keys($values)), array_values($values));
55 55
     }
Please login to merge, or discard this patch.