File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,25 +12,25 @@ class ImportCsv extends Component
1212 use WithFileUploads;
1313 use InteractsWithColumns;
1414
15- /** @var string $model */
15+ /** @var string */
1616 public string $ model ;
1717
18- /** @var string $file */
18+ /** @var string */
1919 public string $ file ;
2020
21- /** @var array $columnsToMap */
21+ /** @var array */
2222 public array $ columnsToMap = [];
2323
24- /** @var array $requiredColumns */
24+ /** @var array */
2525 public array $ requiredColumns = [];
2626
27- /** @var array $columnLabels */
27+ /** @var array */
2828 public array $ columnLabels = [];
2929
3030 public function mount ()
3131 {
3232 $ this ->columnsToMap = $ this ->mapThroughColumns ();
33-
33+
3434 $ this ->columnLabels = $ this ->mapThroughColumnLabels ();
3535
3636 $ this ->requiredColumns = $ this ->mapThroughRequiredColumns ();
Original file line number Diff line number Diff line change 118118 'columnsToMap.name ' => 'name ' ,
119119 'columnsToMap.email ' => 'email ' ,
120120 ]);
121- });
121+ });
You can’t perform that action at this time.
0 commit comments