Completed
Push — master ( 66594c...4f1aef )
by Patrick
03:28
created
Serialize/class.ExcelSerializer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Serialize;
3 3
 
4
-require_once dirname(__FILE__) . '/../libs/PHPExcel/Classes/PHPExcel.php';
4
+require_once dirname(__FILE__).'/../libs/PHPExcel/Classes/PHPExcel.php';
5 5
 
6 6
 class ExcelSerializer extends SpreadSheetSerializer
7 7
 {
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
             for($j = 0; $j < $colCount; $j++)
33 33
             {
34 34
                 $colName = $keys[$j];
35
-                $sheat->setCellValueByColumnAndRow($j, 2+$i, $data[$i][$j]);
35
+                $sheat->setCellValueByColumnAndRow($j, 2 + $i, $data[$i][$j]);
36 36
             }
37 37
         }
38 38
         if(strcasecmp($type, 'xlsx') === 0 || strcasecmp($type, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') === 0)
Please login to merge, or discard this patch.
Auth/OAuth2/class.OAuth2Authenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 /** Only load the HTTPFul bootstrap if it isn't already loaded*/
17 17
 if(!class_exists('Httpful\Request'))
18 18
 {
19
-    require dirname(__FILE__) . '/../../libs/httpful/bootstrap.php';
19
+    require dirname(__FILE__).'/../../libs/httpful/bootstrap.php';
20 20
 }
21 21
 
22 22
 /**
Please login to merge, or discard this patch.