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 ( 374976...56f901 )
by Calima
04:14
created
symfony/console/Symfony/Component/Console/Descriptor/MarkdownDescriptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
             }
129 129
 
130 130
             $this->write("\n\n");
131
-            $this->write(implode("\n", array_map(function ($commandName) {
131
+            $this->write(implode("\n", array_map(function($commandName) {
132 132
                 return '* '.$commandName;
133 133
             }, $namespace['commands'])));
134 134
         }
Please login to merge, or discard this patch.
console/Symfony/Component/Console/Tests/Tester/ApplicationTesterTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         $this->application->setAutoExit(false);
27 27
         $this->application->register('foo')
28 28
             ->addArgument('foo')
29
-            ->setCode(function ($input, $output) { $output->writeln('foo'); })
29
+            ->setCode(function($input, $output) { $output->writeln('foo'); })
30 30
         ;
31 31
 
32 32
         $this->tester = new ApplicationTester($this->application);
Please login to merge, or discard this patch.
console/Symfony/Component/Console/Tests/Tester/CommandTesterTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         $this->command = new Command('foo');
27 27
         $this->command->addArgument('command');
28 28
         $this->command->addArgument('foo');
29
-        $this->command->setCode(function ($input, $output) { $output->writeln('foo'); });
29
+        $this->command->setCode(function($input, $output) { $output->writeln('foo'); });
30 30
 
31 31
         $this->tester = new CommandTester($this->command);
32 32
         $this->tester->execute(array('foo' => 'bar'), array('interactive' => false, 'decorated' => false, 'verbosity' => Output::VERBOSITY_VERBOSE));
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         $application->setAutoExit(false);
73 73
 
74 74
         $command = new Command('foo');
75
-        $command->setCode(function ($input, $output) { $output->writeln('foo'); });
75
+        $command->setCode(function($input, $output) { $output->writeln('foo'); });
76 76
 
77 77
         $application->add($command);
78 78
 
Please login to merge, or discard this patch.
console/Symfony/Component/Console/Tests/Helper/ProcessHelperTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         $output = $this->getOutputStream(StreamOutput::VERBOSITY_NORMAL);
40 40
 
41 41
         $executed = false;
42
-        $callback = function () use (&$executed) { $executed = true; };
42
+        $callback = function() use (&$executed) { $executed = true; };
43 43
 
44 44
         $helper->run($output, 'php -r "echo 42;"', null, $callback);
45 45
         $this->assertTrue($executed);
Please login to merge, or discard this patch.
symfony/console/Symfony/Component/Console/Tests/Input/StringInputTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
             array('"quoted"', array('quoted'), '->tokenize() parses quoted arguments'),
66 66
             array("'quoted'", array('quoted'), '->tokenize() parses quoted arguments'),
67 67
             array("'a\rb\nc\td'", array("a\rb\nc\td"), '->tokenize() parses whitespace chars in strings'),
68
-            array("'a'\r'b'\n'c'\t'd'", array('a','b','c','d'), '->tokenize() parses whitespace chars between args as spaces'),
68
+            array("'a'\r'b'\n'c'\t'd'", array('a', 'b', 'c', 'd'), '->tokenize() parses whitespace chars between args as spaces'),
69 69
             array('\"quoted\"', array('"quoted"'), '->tokenize() parses escaped-quoted arguments'),
70 70
             array("\'quoted\'", array('\'quoted\''), '->tokenize() parses escaped-quoted arguments'),
71 71
             array('-a', array('-a'), '->tokenize() parses short options'),
Please login to merge, or discard this patch.
vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -336,7 +336,7 @@
 block discarded – undo
336 336
     public function __toString()
337 337
     {
338 338
         $self = $this;
339
-        $tokens = array_map(function ($token) use ($self) {
339
+        $tokens = array_map(function($token) use ($self) {
340 340
             if (preg_match('{^(-[^=]+=)(.+)}', $token, $match)) {
341 341
                 return $match[1].$self->escapeToken($match[2]);
342 342
             }
Please login to merge, or discard this patch.