Skip to content

Commit

Permalink
Use app() helper instead of resolve() for old Lumen versions
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbrouwers authored Feb 5, 2024
1 parent 4161053 commit f5175b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cell.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ public function getValue($nullValue = null, $calculateFormulas = false, $formatD
}
}

return resolve(Pipeline::class)->send($value)->through(config('excel.imports.cells.middleware', []))->thenReturn();
return app(Pipeline::class)->send($value)->through(config('excel.imports.cells.middleware', []))->thenReturn();
}
}

0 comments on commit f5175b1

Please sign in to comment.