Skip to content

Commit

Permalink
Merge pull request #719 from driehle/fix/docs
Browse files Browse the repository at this point in the history
fixed typo in driver class name in documentation (#717)
  • Loading branch information
driehle authored Jul 4, 2022
2 parents 0e3aaf6 + 4fa12c9 commit bb27271
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/en/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ See also `this blog article <https://blog.tomhanderson.com/2016/03/zf2-doctrine-
'doctrine' => [
'connection' => [
'orm_crawler' => [
'driverClass' => \Doctrine\DBAL\Driver\PDO\MySql\Driver::class,
'driverClass' => \Doctrine\DBAL\Driver\PDO\MySQL\Driver::class,
'eventmanager' => 'orm_crawler',
'configuration' => 'orm_crawler',
'params' => [
Expand Down
2 changes: 1 addition & 1 deletion docs/en/user-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Connection parameters can be defined in the application configuration:
'connection' => [
// default connection name
'orm_default' => [
'driverClass' => \Doctrine\DBAL\Driver\PDO\MySql\Driver::class,
'driverClass' => \Doctrine\DBAL\Driver\PDO\MySQL\Driver::class,
'params' => [
'host' => 'localhost',
'port' => '3306',
Expand Down

0 comments on commit bb27271

Please sign in to comment.