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 ( 776103...f3c5fe )
by Laszlo
16s
created
Tests/Controller/ConsoleControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
         $templatingMock = $this->prophesize(EngineInterface::class);
112 112
         $that = $this;
113 113
         $templatingMock->render(Argument::type('string'), Argument::type('array'))->will(
114
-            function ($args) use ($that) {
114
+            function($args) use ($that) {
115 115
                 $that->renderArguments = $args;
116 116
             }
117 117
         );
Please login to merge, or discard this patch.
Formatter/HtmlOutputFormatterDecorator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
         }
104 104
         $formatted = $this->formatter->format($message);
105 105
         $escaped = htmlspecialchars($formatted, ENT_QUOTES, 'UTF-8');
106
-        $converted = preg_replace_callback(self::CLI_COLORS_PATTERN, function ($matches) {
106
+        $converted = preg_replace_callback(self::CLI_COLORS_PATTERN, function($matches) {
107 107
             return $this->replaceFormat($matches);
108 108
         }, $escaped);
109 109
 
Please login to merge, or discard this patch.
Tests/Executer/CommandExecutorSource/SomeKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function registerContainerConfiguration(LoaderInterface $loader)
35 35
     {
36
-        $loader->load(function (ContainerBuilder $containerBuilder) {
36
+        $loader->load(function(ContainerBuilder $containerBuilder) {
37 37
             $containerBuilder->setParameter('kernel.secret', 123);
38 38
         });
39 39
     }
Please login to merge, or discard this patch.