Completed
Push — master ( 048421...77aa9b )
by Andrey
02:18
created
index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
  * Example usage
5 5
  */
6 6
 
7
-require __DIR__ . "/vendor/autoload.php";
7
+require __DIR__."/vendor/autoload.php";
8 8
 
9
-$excel = new Excel("/example.xlsx",__DIR__);
9
+$excel = new Excel("/example.xlsx", __DIR__);
10 10
 $sheet = new Sheet($excel);
11 11
 $cell  = new Cell($excel);
12 12
 
Please login to merge, or discard this patch.
class/Excel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     public function getReader()
52 52
     {
53
-        $readerType = PHPExcel_IOFactory::identify($this->sourceFilePath . $this->sourceFile);
53
+        $readerType = PHPExcel_IOFactory::identify($this->sourceFilePath.$this->sourceFile);
54 54
 
55 55
         return PHPExcel_IOFactory::createReader($readerType);
56 56
     }
Please login to merge, or discard this patch.