Passed
Push — master ( d2b17b...0ea672 )
by Babak
03:11
created
src/ExcelHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
     }
39 39
 
40
-    static function create(){
40
+    static function create() {
41 41
 //        dd("Taylor Swift felt to Babak Nodoust Love");
42 42
     }
43 43
 
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
     {
83 83
         $options = $this->options;
84 84
         $table = $this->table;
85
-        $this->excel = Excel::create('payments', function (LaravelExcelWriter $excel) use ($table, $options) {
85
+        $this->excel = Excel::create('payments', function(LaravelExcelWriter $excel) use ($table, $options) {
86 86
             $excel->setTitle($options['title']);
87 87
             $excel->setCreator($options['creator'])->setCompany($options['company']);
88 88
             $excel->setDescription($options['description']);
89
-            $closer = function (LaravelExcelWorksheet $sheet) use ($table){
89
+            $closer = function(LaravelExcelWorksheet $sheet) use ($table){
90 90
                 $sheet->fromArray($table, null, 'A1', false, false);
91 91
             };
92 92
             $excel->sheet("sheet", $closer);
Please login to merge, or discard this patch.