From ccf7932cf9f36504a2fdfff05baf6575aa1221c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Sun, 3 Sep 2017 11:46:29 +0200 Subject: [PATCH] Improve formatting --- docs/en/reference/types.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/reference/types.rst b/docs/en/reference/types.rst index 9f75cd58f03..62fb2b44159 100644 --- a/docs/en/reference/types.rst +++ b/docs/en/reference/types.rst @@ -929,8 +929,8 @@ 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: +must to enable this feature by overriding the +``canRequireSQLConversion`` method: :: @@ -940,8 +940,8 @@ method: return true; } -Then you override the methods convertToPhpValueSQL and -convertToDatabaseValueSQL : +Then you override the methods ``convertToPhpValueSQL`` and +``convertToDatabaseValueSQL`` : ::