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
$this->key . '.required' => "Setting '{$this->key}' is required but was not provided.",
408
+
$this->key . '.string' => "Setting '{$this->key}' must be a string. Given value: {$valueString} (type: {$typeString})",
409
+
$this->key . '.integer' => "Setting '{$this->key}' must be an integer. Given value: {$valueString} (type: {$typeString})",
410
+
$this->key . '.boolean' => "Setting '{$this->key}' must be a boolean. Given value: {$valueString} (type: {$typeString})",
411
+
$this->key . '.array' => "Setting '{$this->key}' must be an array. Given value: {$valueString} (type: {$typeString})",
412
+
$this->key . '.numeric' => "Setting '{$this->key}' must be numeric. Given value: {$valueString} (type: {$typeString})",
413
+
$this->key . '.email' => "Setting '{$this->key}' must be a valid email address. Given value: {$valueString}",
414
+
$this->key . '.url' => "Setting '{$this->key}' must be a valid URL. Given value: {$valueString}",
415
+
$this->key . '.min' => "Setting '{$this->key}' is too small. Given value: {$valueString}",
416
+
$this->key . '.max' => "Setting '{$this->key}' is too large. Given value: {$valueString}",
417
+
$this->key . '.in' => "Setting '{$this->key}' has an invalid value. Given value: {$valueString}. Expected one of the allowed values from rule: {$rule}",
0 commit comments