File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
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 >
@@ -59,7 +59,7 @@ on an object that will contain a credit card number.
59
59
class Transaction
60
60
{
61
61
/**
62
- * @Assert\CardScheme(schemes = {"VISA"}, message = "You credit card number is invalid.")
62
+ * @Assert\CardScheme(schemes = {"VISA"}, message = "Your credit card number is invalid.")
63
63
*/
64
64
protected $cardNumber;
65
65
}
@@ -80,7 +80,7 @@ on an object that will contain a credit card number.
80
80
'schemes' => array(
81
81
'VISA'
82
82
),
83
- 'message' => 'You credit card number is invalid.',
83
+ 'message' => 'Your credit card number is invalid.',
84
84
)));
85
85
}
86
86
}
@@ -117,4 +117,4 @@ message
117
117
118
118
The message shown when the value does not pass the ``CardScheme `` check.
119
119
120
- .. _`Wikipedia: Issuer identification number (IIN)` : http://en.wikipedia.org/wiki/Bank_card_number#Issuer_identification_number_.28IIN.29
120
+ .. _`Wikipedia: Issuer identification number (IIN)` : http://en.wikipedia.org/wiki/Bank_card_number#Issuer_identification_number_.28IIN.29
You can’t perform that action at this time.
0 commit comments