diff --git a/docs/en/reference/types.rst b/docs/en/reference/types.rst index cb6ee85ce84..3911a4df0e8 100644 --- a/docs/en/reference/types.rst +++ b/docs/en/reference/types.rst @@ -927,7 +927,10 @@ Now we implement our ``Doctrine\DBAL\Types\Type`` instance: } } -The job of Doctrine-DBAL is to transform your type into SQL declaration. You can modify the SQL declaration Doctrine will produce. At first, you must to enable this feature by overriding the canRequireSQLConversion method: +The job of Doctrine-DBAL is to transform your type into SQL declaration. +You can modify the SQL declaration Doctrine will produce. At first, you +must to enable this feature by overriding the canRequireSQLConversion +method: :: @@ -937,7 +940,8 @@ The job of Doctrine-DBAL is to transform your type into SQL declaration. You can return true; } -Then you override the methods convertToPhpValueSQL and convertToDatabaseValueSQL : +Then you override the methods convertToPhpValueSQL and +convertToDatabaseValueSQL : ::