diff --git a/src/Illuminate/Console/Scheduling/ManagesFrequencies.php b/src/Illuminate/Console/Scheduling/ManagesFrequencies.php index d3ffd79841a..8c1914f6c39 100644 --- a/src/Illuminate/Console/Scheduling/ManagesFrequencies.php +++ b/src/Illuminate/Console/Scheduling/ManagesFrequencies.php @@ -525,7 +525,7 @@ public function monthly() /** * Schedule the event to run monthly on a given day and time. * - * @param int<0, 31> $dayOfMonth + * @param int<1, 31> $dayOfMonth * @param string $time * @return $this */ @@ -539,8 +539,8 @@ public function monthlyOn($dayOfMonth = 1, $time = '0:0') /** * Schedule the event to run twice monthly at a given time. * - * @param int $first<0, 31> - * @param int $second<0, 31> + * @param int $first<1, 31> + * @param int $second<1, 31> * @param string $time * @return $this */ @@ -611,7 +611,7 @@ public function yearly() * Schedule the event to run yearly on a given month, day, and time. * * @param int $month - * @param int<0, 31>|string $dayOfMonth + * @param int<1, 31>|string $dayOfMonth * @param string $time * @return $this */