From 8b93d39c4721a0c170b92bfbf7bfb5090b5407cc Mon Sep 17 00:00:00 2001 From: simon-tma Date: Fri, 3 Jan 2025 10:14:21 +1100 Subject: [PATCH] Fix offset range in docblock (#54062) Fixes the incorrect minutes range introduced in #53984. --- src/Illuminate/Console/Scheduling/ManagesFrequencies.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Console/Scheduling/ManagesFrequencies.php b/src/Illuminate/Console/Scheduling/ManagesFrequencies.php index 651767aaf7cd..105334e01b43 100644 --- a/src/Illuminate/Console/Scheduling/ManagesFrequencies.php +++ b/src/Illuminate/Console/Scheduling/ManagesFrequencies.php @@ -250,7 +250,7 @@ public function hourly() /** * Schedule the event to run hourly at a given offset in the hour. * - * @param array|string|int<0, 23>|int<0, 23>[] $offset + * @param array|string|int<0, 59>|int<0, 59>[] $offset * @return $this */ public function hourlyAt($offset)