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 ( f0718c...a6602a )
by Denis
02:49
created
examples/one.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
-require_once __DIR__ . '/../vendor/autoload.php';
2
+require_once __DIR__.'/../vendor/autoload.php';
3 3
 
4 4
 $start = microtime(true);
5 5
 $header = [
Please login to merge, or discard this patch.
examples/big-data.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
-require_once __DIR__ . '/../vendor/autoload.php';
2
+require_once __DIR__.'/../vendor/autoload.php';
3 3
 
4 4
 $start = microtime(true);
5 5
 $header = [
Please login to merge, or discard this patch.
examples/more-than-one.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
-require_once __DIR__ . '/../vendor/autoload.php';
2
+require_once __DIR__.'/../vendor/autoload.php';
3 3
 
4 4
 $start = microtime(true);
5 5
 $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.
src/ExcelWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
             return;
174 174
         }
175 175
         $sheetFilename = $this->tempFilename();
176
-        $sheetXmlName = 'sheet' . (count($this->sheets) + 1).".xml";
176
+        $sheetXmlName = 'sheet'.(count($this->sheets) + 1).".xml";
177 177
         $sheetObj = new Sheet();
178 178
         $sheetObj
179 179
             ->setFilename($sheetFilename)
Please login to merge, or discard this patch.
examples/formula.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
-require_once __DIR__ . '/../vendor/autoload.php';
2
+require_once __DIR__.'/../vendor/autoload.php';
3 3
 
4 4
 $start = microtime(true);
5 5
 $header = [
Please login to merge, or discard this patch.