Skip to content

Commit ae05c56

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: [Validator] Remove extra space [Validator] Remove empty line from annotation
2 parents 18373c8 + f15031e commit ae05c56

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

reference/constraints/DivisibleBy.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ The following constraints ensure that:
3939
4040
class Item
4141
{
42-
4342
/**
4443
* @Assert\DivisibleBy(0.25)
4544
*/

reference/constraints/Isbn.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on an object that will contain an ISBN.
3737
/**
3838
* @Assert\Isbn(
3939
* type = "isbn10",
40-
* message = "This value is not valid."
40+
* message = "This value is not valid."
4141
* )
4242
*/
4343
protected $isbn;
@@ -51,7 +51,7 @@ on an object that will contain an ISBN.
5151
isbn:
5252
- Isbn:
5353
type: isbn10
54-
message: This value is not valid.
54+
message: This value is not valid.
5555
5656
.. code-block:: xml
5757
@@ -65,7 +65,7 @@ on an object that will contain an ISBN.
6565
<property name="isbn">
6666
<constraint name="Isbn">
6767
<option name="type">isbn10</option>
68-
<option name="message">This value is not valid.</option>
68+
<option name="message">This value is not valid.</option>
6969
</constraint>
7070
</property>
7171
</class>

0 commit comments

Comments
 (0)