-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Validator] - EmailConstraint reference #3469
Changes from 4 commits
faa034b
e4a0e2f
f0b3b85
517e4c5
aa5aa61
a0dd460
c50f041
257c483
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,8 @@ cast to a string before being validated. | |
+----------------+---------------------------------------------------------------------+ | ||
| Applies to | :ref:`property or method <validation-property-target>` | | ||
+----------------+---------------------------------------------------------------------+ | ||
| Options | - `message`_ | | ||
| Options | - `strict`_ | | ||
| | - `message`_ | | ||
| | - `checkMX`_ | | ||
| | - `checkHost`_ | | ||
+----------------+---------------------------------------------------------------------+ | ||
|
@@ -89,6 +90,17 @@ Basic Usage | |
Options | ||
------- | ||
|
||
.. versionadded:: 2.5 | ||
The ``strict`` option was introduced in Symfony 2.5. | ||
|
||
strict | ||
~~~~~~ | ||
|
||
**type**: ``boolean`` **default**: ``false`` | ||
|
||
When false, the email will be validated against a simple Regular Expression. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd use lowercased "regular expression" There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Which is the core devs opinion on this? |
||
If true, then the `egulias/email-validator`_ library is required to perform an RFC compilant validation. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. compliant |
||
|
||
message | ||
~~~~~~~ | ||
|
||
|
@@ -112,3 +124,6 @@ checkHost | |
If true, then the :phpfunction:`checkdnsrr` PHP function will be used to | ||
check the validity of the MX *or* the A *or* the AAAA record of the host | ||
of the given email. | ||
|
||
|
||
.. _EmailValidator: https://packagist.org/packages/egulias/email-validator | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The label has to be the text used in the paragraph above. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. that was my mistake, sorry @egulias :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nevermind :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. well, now you did the wrong change. You should have changed this, not the label in the text. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You want to leave the string as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's great. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok thank you! And sorry that you need to do so much changes :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be placed before the headline. So you get something like: