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
Branch master (be6ebc)
by Peter
13:47
created
Tests/Integration/TestKernel.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@
 block discarded – undo
10 10
 {
11 11
     private $configFilename;
12 12
 
13
+    /**
14
+     * @param string $env
15
+     */
13 16
     public function __construct($env, $debug, $configFilename)
14 17
     {
15 18
         parent::__construct($env, $debug);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         $this->cacheDir = $cacheDir = tempnam(sys_get_temp_dir(), 'raven-bundle-test');
20 20
         unlink($cacheDir);
21 21
 
22
-        register_shutdown_function(function () use ($cacheDir) {
22
+        register_shutdown_function(function() use ($cacheDir) {
23 23
             $fs = new Filesystem();
24 24
             $fs->remove($cacheDir);
25 25
         });
Please login to merge, or discard this patch.
Tests/Integration/IntegrationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     public function getConfigurations()
27 27
     {
28
-        foreach (glob(__DIR__ . '/configs/test*.yml') as $configFilename) {
28
+        foreach (glob(__DIR__.'/configs/test*.yml') as $configFilename) {
29 29
             yield [$configFilename, $debug = true];
30 30
         }
31 31
     }
Please login to merge, or discard this patch.