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 ( 4d01c1...9839d7 )
by Denis
10:50
created
examples/one.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-require_once __DIR__ . '/../vendor/autoload.php';
2
+require_once __DIR__.'/../vendor/autoload.php';
3 3
 
4
-print_r(file_exists(__DIR__ . "/../output_more_tan_one.xlsx"));
4
+print_r(file_exists(__DIR__."/../output_more_tan_one.xlsx"));
5 5
     die;
6 6
 $start = microtime(true);
7 7
 $header = [
Please login to merge, or discard this patch.
test/XLSX/XLSXtest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-require_once __DIR__ . '/../vendor/autoload.php';
2
+require_once __DIR__.'/../vendor/autoload.php';
3 3
 
4 4
 use Ellumilel\ExcelWriter;
5 5
 
@@ -20,6 +20,6 @@  discard block
 block discarded – undo
20 20
         $writer->writeToFile("unit_test_output_one.xlsx");
21 21
 
22 22
 
23
-        $this->assertEquals(true, file_exists(__DIR__ . "/../unit_test_output_one.xlsx"));
23
+        $this->assertEquals(true, file_exists(__DIR__."/../unit_test_output_one.xlsx"));
24 24
     }
25 25
 }
Please login to merge, or discard this patch.