From 8f3ec0ba017779847cc6d74d06380e7f468ff7db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Sun, 3 Sep 2017 11:44:44 +0200 Subject: [PATCH] Linebreak after 72 chars It seems to be the case in the rest of this document. --- docs/en/reference/types.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 : ::