@@ -4,9 +4,9 @@ |
||
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 |
@@ -54,7 +54,7 @@ |
||
54 | 54 | */ |
55 | 55 | public function getReader() |
56 | 56 | { |
57 | - $readerType = \PHPExcel_IOFactory::identify($this->sourceFilePath . $this->sourceFile); |
|
57 | + $readerType = \PHPExcel_IOFactory::identify($this->sourceFilePath.$this->sourceFile); |
|
58 | 58 | |
59 | 59 | return \PHPExcel_IOFactory::createReader($readerType); |
60 | 60 | } |