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
Push — master ( 59a3c4...6f961f )
by Denis
10:31 queued 10s
created
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.
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 2 patches
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.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @param $cellFormat
227
+     * @param string $cellFormat
228 228
      *
229 229
      * @return string
230 230
      */
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
      *
274 274
      * @param $cellFormat
275 275
      *
276
-     * @return int|mixed
276
+     * @return integer
277 277
      */
278 278
     private function addCellFormat($cellFormat)
279 279
     {
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
 $data1 = [
Please login to merge, or discard this patch.
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/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.