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 ( 97cb80...5f31f1 )
by Stan
02:56 queued 01:11
created
src/Command/Emulator/Message.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 Teebot\Command\Emulator;
6 6
 
Please login to merge, or discard this patch.
src/Command/Listener/Start.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 Teebot\Command\Listener;
6 6
 
Please login to merge, or discard this patch.
src/Api/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * @author  Stanislav Drozdov <[email protected]>
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Teebot\Api;
15 15
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         string $receivedData,
88 88
         ?string $entityClass,
89 89
         EntityInterface $parent = null
90
-    ): Response {
90
+    ) : Response {
91 91
         return new Response($receivedData, $entityClass, $parent);
92 92
     }
93 93
 }
Please login to merge, or discard this patch.
src/Configuration/Loader.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 Teebot\Configuration;
6 6
 
Please login to merge, or discard this patch.
src/Configuration/AbstractContainer.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 Teebot\Configuration;
6 6
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $replace = [];
69 69
 
70 70
         foreach ($tokens as $token) {
71
-            $envKey   = static::ENV_PREFIX . strtoupper(substr($token, 1, strlen($token) - 2));
71
+            $envKey   = static::ENV_PREFIX.strtoupper(substr($token, 1, strlen($token) - 2));
72 72
             $envValue = getenv($envKey);
73 73
 
74 74
             if ($envValue) {
Please login to merge, or discard this patch.
src/Configuration/Container.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 Teebot\Configuration;
6 6
 
Please login to merge, or discard this patch.