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.
Passed
Branch master (ec44ab)
by Louis-Marie
04:20
created
Category
src/LM/AuthAbstractor/Implementation/ApplicationConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
         $this->composerDir = realpath(__DIR__.'/../../../../../..');
78 78
         $this->memberFinder = $memberFinder;
79 79
         $this->tokenStorage = new NativeSessionTokenStorage();
80
-        $this->u2fRegistrationFinder = $u2fRegistrationFinder ?? function ($username) {
80
+        $this->u2fRegistrationFinder = $u2fRegistrationFinder ?? function($username) {
81 81
             return [];
82 82
         };
83 83
     }
Please login to merge, or discard this patch.
src/LM/AuthAbstractor/Challenge/EmailChallenge.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
         if (
81 81
             $form->isSubmitted() &&
82 82
             $form->isValid() &&
83
-            null!== $httpRequest
83
+            null !== $httpRequest
84 84
         ) {
85 85
             $code = $authenticationProcess
86 86
                 ->getTypedMap()
Please login to merge, or discard this patch.
src/LM/AuthAbstractor/Mocker/U2fMocker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
                 $list[$item['id']]['u2fAuthentications'] = [];
63 63
                 foreach ($item['u2fAuthentications'] as $u2fAuth) {
64 64
                     $signRequests = array_map(
65
-                        function ($object) {
65
+                        function($object) {
66 66
                             return (new SignRequest())
67 67
                                 ->setAppId($object['appId'])
68 68
                                 ->setChallenge($object['challenge'])
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     public function getU2fRegistrationsOnly(): array
111 111
     {
112 112
         return array_map(
113
-            function ($item) {
113
+            function($item) {
114 114
                 return $item['u2fRegistration'];
115 115
             },
116 116
             $this->u2fRegistrations
Please login to merge, or discard this patch.
src/LM/AuthAbstractor/Controller/AuthenticationKernel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
         $formEngine = new TwigRendererEngine([$defaultFormTheme], $twig);
101 101
         $twig->addRuntimeLoader(new Twig_FactoryRuntimeLoader([
102
-            FormRenderer::class => function () use ($formEngine, $csrfManager) {
102
+            FormRenderer::class => function() use ($formEngine, $csrfManager) {
103 103
                 return new FormRenderer($formEngine, $csrfManager);
104 104
             },
105 105
         ]));
@@ -115,13 +115,13 @@  discard block
 block discarded – undo
115 115
 
116 116
         $containerBuilder = new ContainerBuilder();
117 117
         $containerBuilder->addDefinitions([
118
-            IApplicationConfiguration::class => function () use ($appConfig) {
118
+            IApplicationConfiguration::class => function() use ($appConfig) {
119 119
                 return $appConfig;
120 120
             },
121
-            Twig_Environment::class => function () use ($twig) {
121
+            Twig_Environment::class => function() use ($twig) {
122 122
                 return $twig;
123 123
             },
124
-            FormFactoryInterface::class => function () use ($formFactory) {
124
+            FormFactoryInterface::class => function() use ($formFactory) {
125 125
                 return $formFactory;
126 126
             },
127 127
         ]);
Please login to merge, or discard this patch.