Skip to content

Commit

Permalink
Correct the error text of Validators::gt()
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangChengLin committed Sep 10, 2021
1 parent ffdcf7a commit d93a21a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Locale/LocaleZhCN.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class LocaleZhCN
'max' => '{attr} maximum boundary is {value0}',
'lt' => '{attr} value must be less than {value0}',
'lte' => '{attr} value must be less than or equals to {value0}',
'gt' => '{attr} value must be greater than or equals to {value0}',
'gt' => '{attr} value must be greater than {value0}',
'gte' => '{attr} value must be greater than or equals to {value0}',

// field compare
Expand Down
2 changes: 1 addition & 1 deletion src/Validator/GlobalMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ final class GlobalMessage
'max' => '{attr} maximum boundary is {value0}',
'lt' => '{attr} value must be less than {value0}',
'lte' => '{attr} value must be less than or equals to {value0}',
'gt' => '{attr} value must be greater than or equals to {value0}',
'gt' => '{attr} value must be greater than {value0}',
'gte' => '{attr} value must be greater than or equals to {value0}',

// field compare
Expand Down

0 comments on commit d93a21a

Please sign in to comment.