We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ff9926 commit cfccab1Copy full SHA for cfccab1
1 file changed
src/Validator/GlobalMessage.php
@@ -71,6 +71,7 @@ final class GlobalMessage
71
'lteField' => '{attr} value must be less than or equals to {value0}',
72
'gtField' => '{attr} value must be greater than {value0}',
73
'gteField' => '{attr} value must be greater than or equals to {value0}',
74
+ 'inField' => '{attr} value must be exists in {value0}',
75
76
// 'in', 'enum',
77
'enum' => '{attr} must in ({value0})',
@@ -123,7 +124,7 @@ public static function get(string $key)
123
124
}
125
126
/**
- * @param string $key
127
+ * @param string $key
128
* @param string|array $msg
129
*/
130
public static function set(string $key, $msg): void
0 commit comments