Skip to content

Commit 5ff9926

Browse files
authored
Merge pull request #43 from ZhangChengLin/gt()
Correct the error text of Validators::gt()
2 parents ffdcf7a + d93a21a commit 5ff9926

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Locale/LocaleZhCN.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class LocaleZhCN
6464
'max' => '{attr} maximum boundary is {value0}',
6565
'lt' => '{attr} value must be less than {value0}',
6666
'lte' => '{attr} value must be less than or equals to {value0}',
67-
'gt' => '{attr} value must be greater than or equals to {value0}',
67+
'gt' => '{attr} value must be greater than {value0}',
6868
'gte' => '{attr} value must be greater than or equals to {value0}',
6969

7070
// field compare

src/Validator/GlobalMessage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ final class GlobalMessage
6161
'max' => '{attr} maximum boundary is {value0}',
6262
'lt' => '{attr} value must be less than {value0}',
6363
'lte' => '{attr} value must be less than or equals to {value0}',
64-
'gt' => '{attr} value must be greater than or equals to {value0}',
64+
'gt' => '{attr} value must be greater than {value0}',
6565
'gte' => '{attr} value must be greater than or equals to {value0}',
6666

6767
// field compare

0 commit comments

Comments
 (0)