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 (2321f2)
by Dmitri
03:39
created
Category
Listener/ExceptionListener.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
 namespace Damax\Bundle\ApiAuthBundle\Listener;
6 6
 
Please login to merge, or discard this patch.
Tests/Listener/ExceptionListenerTest.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
 namespace Damax\Bundle\ApiAuthBundle\Tests\Listener;
6 6
 
Please login to merge, or discard this patch.
Tests/Extractor/CookieExtractorTest.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
 namespace Damax\Bundle\ApiAuthBundle\Tests\Extractor;
6 6
 
Please login to merge, or discard this patch.
Tests/Extractor/QueryExtractorTest.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
 namespace Damax\Bundle\ApiAuthBundle\Tests\Extractor;
6 6
 
Please login to merge, or discard this patch.
Tests/Extractor/ChainExtractorTest.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
 namespace Damax\Bundle\ApiAuthBundle\Tests\Extractor;
6 6
 
Please login to merge, or discard this patch.
Tests/Extractor/HeaderExtractorTest.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
 namespace Damax\Bundle\ApiAuthBundle\Tests\Extractor;
6 6
 
Please login to merge, or discard this patch.
Tests/Jwt/TokenTest.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
 namespace Damax\Bundle\ApiAuthBundle\Tests\Jwt;
6 6
 
Please login to merge, or discard this patch.
Tests/Jwt/Lcobucci/BuilderTest.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
 namespace Damax\Bundle\ApiAuthBundle\Tests\Jwt\Lcobucci;
6 6
 
Please login to merge, or discard this patch.
Tests/Jwt/Lcobucci/ParserTest.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
 namespace Damax\Bundle\ApiAuthBundle\Tests\Jwt\Lcobucci;
6 6
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $this->validator
81 81
             ->expects($this->once())
82 82
             ->method('validate')
83
-            ->willReturnCallback(function (Token $jwtToken, ...$constraints) use ($token) {
83
+            ->willReturnCallback(function(Token $jwtToken, ...$constraints) use ($token) {
84 84
                 $this->assertSame($token, $jwtToken);
85 85
                 $this->assertCount(4, $constraints);
86 86
                 $this->assertContainsOnlyInstancesOf(Constraint::class, $constraints);
Please login to merge, or discard this patch.