Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7892a8 commit 245a492Copy full SHA for 245a492
book/doctrine.rst
@@ -1276,7 +1276,7 @@ and ``nullable``. Take a few examples:
1276
* A string field of length 150 that persists to an "email_address" column
1277
* and has a unique index.
1278
*
1279
- * @ORM\Column(name="email_address", unique=true, length="150")
+ * @ORM\Column(name="email_address", unique=true, length=150)
1280
*/
1281
protected $email;
1282
book/security.rst
@@ -980,7 +980,7 @@ be stored in the database.
980
class User implements UserInterface
981
{
982
/**
983
- * @ORM\Column(type="string", length="255")
+ * @ORM\Column(type="string", length=255)
984
985
protected $username;
986
0 commit comments