diff --git a/src/Illuminate/Validation/Concerns/ValidatesAttributes.php b/src/Illuminate/Validation/Concerns/ValidatesAttributes.php index d0f5335e29a4..b8fb2b1ac589 100644 --- a/src/Illuminate/Validation/Concerns/ValidatesAttributes.php +++ b/src/Illuminate/Validation/Concerns/ValidatesAttributes.php @@ -1460,7 +1460,7 @@ public function validateJson($attribute, $value) } /** - * Validate the size of an attribute is less than a maximum value. + * Validate the size of an attribute is less than or equal to a maximum value. * * @param string $attribute * @param mixed $value @@ -1566,7 +1566,7 @@ protected function shouldBlockPhpUpload($value, $parameters) } /** - * Validate the size of an attribute is greater than a minimum value. + * Validate the size of an attribute is greater than or equal to a minimum value. * * @param string $attribute * @param mixed $value