Skip to content

Commit

Permalink
Linebreak after 72 chars
Browse files Browse the repository at this point in the history
It seems to be the case in the rest of this document.
  • Loading branch information
greg0ire committed Sep 10, 2017
1 parent 24b4ebf commit 8f3ec0b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/en/reference/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

::

Expand All @@ -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 :

::

Expand Down

0 comments on commit 8f3ec0b

Please sign in to comment.