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 (7e4f5d)
by Oliver
02:59
created
Category
src/Exception.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\PharStreamWrapper;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
src/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\PharStreamWrapper;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
src/Interceptor/PharExtensionInterceptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\PharStreamWrapper\Interceptor;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
src/PharStreamWrapper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\PharStreamWrapper;
4 4
 
5 5
 /*
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             'mkdir',
103 103
             $path,
104 104
             $mode,
105
-            (bool)($options & STREAM_MKDIR_RECURSIVE),
105
+            (bool) ($options & STREAM_MKDIR_RECURSIVE),
106 106
             $this->context
107 107
         );
108 108
     }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
         string &$opened_path = null
248 248
     ): bool {
249 249
         $this->assert($path, Behavior::COMMAND_STREAM_OPEN);
250
-        $arguments = [$path, $mode, (bool)($options & STREAM_USE_PATH)];
250
+        $arguments = [$path, $mode, (bool) ($options & STREAM_USE_PATH)];
251 251
         // only add stream context for non include/require calls
252 252
         if (!($options & static::STREAM_OPEN_FOR_INCLUDE)) {
253 253
             $arguments[] = $this->context;
Please login to merge, or discard this patch.
src/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\PharStreamWrapper;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
src/Behavior.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\PharStreamWrapper;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
src/Assertable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\PharStreamWrapper;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.