Commit e916af63 authored by Marco Pivetta's avatar Marco Pivetta

Merge pull request #310 from pscheit/patch-1

fix function name in exception text
parents af20e348 efb6da3d
...@@ -91,7 +91,7 @@ class DBALException extends \Exception ...@@ -91,7 +91,7 @@ class DBALException extends \Exception
{ {
return new self('Unknown column type "'.$name.'" requested. Any Doctrine type that you use has ' . return new self('Unknown column type "'.$name.'" requested. Any Doctrine type that you use has ' .
'to be registered with \Doctrine\DBAL\Types\Type::addType(). You can get a list of all the ' . 'to be registered with \Doctrine\DBAL\Types\Type::addType(). You can get a list of all the ' .
'known types with \Doctrine\DBAL\Types\Type::getTypeMap(). If this error occurs during database ' . 'known types with \Doctrine\DBAL\Types\Type::getTypesMap(). If this error occurs during database ' .
'introspection then you might have forgot to register all database types for a Doctrine Type. Use ' . 'introspection then you might have forgot to register all database types for a Doctrine Type. Use ' .
'AbstractPlatform#registerDoctrineTypeMapping() or have your custom types implement ' . 'AbstractPlatform#registerDoctrineTypeMapping() or have your custom types implement ' .
'Type#getMappedDatabaseTypes(). If the type name is empty you might ' . 'Type#getMappedDatabaseTypes(). If the type name is empty you might ' .
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment