Skip to content

Commit

Permalink
Update Dependencies; minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aVadim483 committed Nov 10, 2023
1 parent 5be9b6b commit eee4c9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"require": {
"php": ">=7.4",
"ext-json": "*",
"avadim/fast-excel-writer": "^4.6",
"avadim/fast-excel-reader": "^2.9",
"avadim/fast-excel-writer": "^4.8",
"avadim/fast-excel-reader": "^2.11",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
Expand Down
4 changes: 2 additions & 2 deletions src/FastExcelLaravel/ExcelReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public static function open(string $file): ExcelReader
*
* @return SheetReader
*/
public static function createSheet(string $sheetName, $sheetId, $file, $path): SheetReader
public static function createSheet(string $sheetName, $sheetId, $file, $path, $excel): SheetReader
{
return new SheetReader($sheetName, $sheetId, $file, $path);
return new SheetReader($sheetName, $sheetId, $file, $path, $excel);
}

/**
Expand Down

0 comments on commit eee4c9b

Please sign in to comment.