File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ on an object that will contain a credit card number.
35
35
cardNumber :
36
36
- CardScheme :
37
37
schemes : [VISA]
38
- message : You credit card number is invalid.
38
+ message : Your credit card number is invalid.
39
39
40
40
.. code-block :: xml
41
41
@@ -46,7 +46,7 @@ on an object that will contain a credit card number.
46
46
<option name =" schemes" >
47
47
<value >VISA</value >
48
48
</option >
49
- <option name =" message" >You credit card number is invalid.</option >
49
+ <option name =" message" >Your credit card number is invalid.</option >
50
50
</constraint >
51
51
</property >
52
52
</class >
@@ -61,7 +61,7 @@ on an object that will contain a credit card number.
61
61
class Transaction
62
62
{
63
63
/**
64
- * @Assert\CardScheme(schemes = {"VISA"}, message = "You credit card number is invalid.")
64
+ * @Assert\CardScheme(schemes = {"VISA"}, message = "Your credit card number is invalid.")
65
65
*/
66
66
protected $cardNumber;
67
67
}
@@ -84,7 +84,7 @@ on an object that will contain a credit card number.
84
84
'schemes' => array(
85
85
'VISA'
86
86
),
87
- 'message' => 'You credit card number is invalid.',
87
+ 'message' => 'Your credit card number is invalid.',
88
88
)));
89
89
}
90
90
}
You can’t perform that action at this time.
0 commit comments