Skip to content

Commit

Permalink
Merge pull request #1154 from pgrimaud/master
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Apr 21, 2020
2 parents bda5f51 + 43be1e0 commit 97c33f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ConnectionFactory.php
Expand Up @@ -104,7 +104,7 @@ private function getDatabasePlatform(Connection $connection) : AbstractPlatform
return $connection->getDatabasePlatform();
} catch (DriverException $driverException) {
throw new DBALException(
'An exception occured while establishing a connection to figure out your platform version.' . PHP_EOL .
'An exception occurred while establishing a connection to figure out your platform version.' . PHP_EOL .
"You can circumvent this by setting a 'server_version' configuration value" . PHP_EOL . PHP_EOL .
'For further information have a look at:' . PHP_EOL .
'https://github.com/doctrine/DoctrineBundle/issues/673',
Expand Down
2 changes: 1 addition & 1 deletion DependencyInjection/Configuration.php
Expand Up @@ -204,7 +204,7 @@ private function configureDbalDriverNode(ArrayNodeDefinition $node) : void
->booleanNode('memory')->end()
->scalarNode('unix_socket')->info('The unix socket to use for MySQL')->end()
->booleanNode('persistent')->info('True to use as persistent connection for the ibm_db2 driver')->end()
->scalarNode('protocol')->info('The protocol to use for the ibm_db2 driver (default to TCPIP if ommited)')->end()
->scalarNode('protocol')->info('The protocol to use for the ibm_db2 driver (default to TCPIP if omitted)')->end()
->booleanNode('service')
->info('True to use SERVICE_NAME as connection parameter instead of SID for Oracle')
->end()
Expand Down

0 comments on commit 97c33f7

Please sign in to comment.