Skip to content

Commit eda0677

Browse files
authored
Merge pull request #3190 from jrhenderson1988/typo
Fixed typo in upgrade doc
2 parents e06fc92 + 1921733 commit eda0677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ If you were previously binding a service container binding for a `db.connection.
173173

174174
#### Fetch Mode
175175

176-
Laravel no longer includes the ability to customize the PDO "fetch mode" from your configuration files. Instead, `PDO::FETCH_OBJ` is always used. If you will still like to customize the fetch mode for your application you may listen for the new `Illuminate\Database\Events\StatementPrepared` event:
176+
Laravel no longer includes the ability to customize the PDO "fetch mode" from your configuration files. Instead, `PDO::FETCH_OBJ` is always used. If you would still like to customize the fetch mode for your application you may listen for the new `Illuminate\Database\Events\StatementPrepared` event:
177177

178178
Event::listen(StatementPrepared::class, function ($event) {
179179
$event->statement->setFetchMode(...);

0 commit comments

Comments
 (0)