You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -191,7 +191,7 @@ $rules = [
191
191
'subscribe-newsletter' => [
192
192
'type' => 'boolean',
193
193
],
194
-
//email is required if user checks the subscribe checkbox, else, do not require if
194
+
//email is required if user checks the subscribe checkbox, else, do not require it
195
195
'email' => [
196
196
'type' => 'email',
197
197
'requireIf' => [
@@ -205,7 +205,7 @@ $rules = [
205
205
206
206
## Validation Filters
207
207
208
-
Filters are applied to the field values prior to validations. You can use filters to modify field values prior to validations. The available filters include:
208
+
Filters are applied to the field values prior to validations. You can use filters to modify field values prior to validation. The available filters include:
209
209
210
210
1.**decode**: Call php `urldecode()` function on the field value(s). Defaults to true
211
211
@@ -238,7 +238,7 @@ $rules = [
238
238
239
239
## Validation Rule Types
240
240
241
-
The module defines lots of validation rule types that covers a wide range of validation requirements. These includes the following:
241
+
The module defines lots of validation rule types that covers a wide range of validation cases. These includes the following:
0 commit comments