Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 245a492

Browse files
brikouweaverryan
authored andcommitted
fixed length annotation
1 parent f7892a8 commit 245a492

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/doctrine.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@ and ``nullable``. Take a few examples:
12761276
* A string field of length 150 that persists to an "email_address" column
12771277
* and has a unique index.
12781278
*
1279-
* @ORM\Column(name="email_address", unique=true, length="150")
1279+
* @ORM\Column(name="email_address", unique=true, length=150)
12801280
*/
12811281
protected $email;
12821282

book/security.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ be stored in the database.
980980
class User implements UserInterface
981981
{
982982
/**
983-
* @ORM\Column(type="string", length="255")
983+
* @ORM\Column(type="string", length=255)
984984
*/
985985
protected $username;
986986

0 commit comments

Comments
 (0)