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 ( c341c3...28bf7f )
by Denis
02:56
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/Helpers/PHPExcelHelper.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * @param $val
64 64
      *
65
-     * @return mixed
65
+     * @return string
66 66
      */
67 67
     public static function xmlspecialchars($val)
68 68
     {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      *
91 91
      * @param string $filename
92 92
      *
93
-     * @return mixed
93
+     * @return string
94 94
      */
95 95
     public static function checkFilename($filename)
96 96
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             return 60 + $seconds;
41 41
         }
42 42
 
43
-        $range  = $year - $epoch;
43
+        $range = $year - $epoch;
44 44
         // check leapDay
45 45
         $leap = (new \DateTime($dateInput))->format('L');
46 46
         $mDays = [31, ($leap ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         }
51 51
 
52 52
         $days = $day + ($range * 365) + array_sum(array_slice($mDays, 0, $month - 1));
53
-        $days += intval(($range) / 4) -  intval(($range + $offset) / 100);
53
+        $days += intval(($range) / 4) - intval(($range + $offset) / 100);
54 54
         $days += intval(($range + $offset + $norm) / 400) - intval($leap);
55 55
 
56 56
         if ($days > 59) {
Please login to merge, or discard this patch.
src/ExcelWriter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 class ExcelWriter
19 19
 {
20 20
     /** @var string */
21
-    protected $author ='Unknown Author';
21
+    protected $author = 'Unknown Author';
22 22
     /** @var array */
23 23
     protected $sheets = [];
24 24
     /** @var array */
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
             return;
185 185
         }
186 186
         $sheetFilename = $this->tempFilename();
187
-        $sheetXmlName = 'sheet' . (count($this->sheets) + 1).".xml";
187
+        $sheetXmlName = 'sheet'.(count($this->sheets) + 1).".xml";
188 188
         $sheetObj = new Sheet();
189 189
         $sheetObj
190 190
             ->setFilename($sheetFilename)
Please login to merge, or discard this patch.