|
9 | 9 | * @method static \Illuminate\Console\Scheduling\Event command(string $command, array $parameters = [])
|
10 | 10 | * @method static \Illuminate\Console\Scheduling\CallbackEvent job(object|string $job, string|null $queue = null, string|null $connection = null)
|
11 | 11 | * @method static \Illuminate\Console\Scheduling\Event exec(string $command, array $parameters = [])
|
| 12 | + * @method static void group(\Closure $events) |
12 | 13 | * @method static string compileArrayInput(string|int $key, array $value)
|
13 | 14 | * @method static bool serverShouldRun(\Illuminate\Console\Scheduling\Event $event, \DateTimeInterface $time)
|
14 | 15 | * @method static \Illuminate\Support\Collection dueEvents(\Illuminate\Contracts\Foundation\Application $app)
|
|
18 | 19 | * @method static void mixin(object $mixin, bool $replace = true)
|
19 | 20 | * @method static bool hasMacro(string $name)
|
20 | 21 | * @method static void flushMacros()
|
| 22 | + * @method static mixed macroCall(string $method, array $parameters) |
| 23 | + * @method static void mergeAttributes(\Illuminate\Console\Scheduling\Event $event) |
| 24 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes user(string $user) |
| 25 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes environments(array|mixed $environments) |
| 26 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes evenInMaintenanceMode() |
| 27 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes withoutOverlapping(int $expiresAt = 1440) |
| 28 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes onOneServer() |
| 29 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes runInBackground() |
| 30 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes when(\Closure|bool $callback) |
| 31 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes skip(\Closure|bool $callback) |
| 32 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes cron(string $expression) |
| 33 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes between(string $startTime, string $endTime) |
| 34 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes unlessBetween(string $startTime, string $endTime) |
| 35 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everySecond() |
| 36 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoSeconds() |
| 37 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFiveSeconds() |
| 38 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTenSeconds() |
| 39 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFifteenSeconds() |
| 40 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwentySeconds() |
| 41 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThirtySeconds() |
| 42 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyMinute() |
| 43 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoMinutes() |
| 44 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThreeMinutes() |
| 45 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFourMinutes() |
| 46 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFiveMinutes() |
| 47 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTenMinutes() |
| 48 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFifteenMinutes() |
| 49 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThirtyMinutes() |
| 50 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes hourly() |
| 51 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes hourlyAt(array|string|int $offset) |
| 52 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyOddHour(array|string|int $offset = 0) |
| 53 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoHours(array|string|int $offset = 0) |
| 54 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThreeHours(array|string|int $offset = 0) |
| 55 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFourHours(array|string|int $offset = 0) |
| 56 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes everySixHours(array|string|int $offset = 0) |
| 57 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes daily() |
| 58 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes at(string $time) |
| 59 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes dailyAt(string $time) |
| 60 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceDaily(int $first = 1, int $second = 13) |
| 61 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceDailyAt(int $first = 1, int $second = 13, int $offset = 0) |
| 62 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekdays() |
| 63 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekends() |
| 64 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes mondays() |
| 65 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes tuesdays() |
| 66 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes wednesdays() |
| 67 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes thursdays() |
| 68 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes fridays() |
| 69 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes saturdays() |
| 70 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes sundays() |
| 71 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekly() |
| 72 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes weeklyOn(array|mixed $dayOfWeek, string $time = '0:0') |
| 73 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes monthly() |
| 74 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes monthlyOn(int $dayOfMonth = 1, string $time = '0:0') |
| 75 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceMonthly(int $first = 1, int $second = 16, string $time = '0:0') |
| 76 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes lastDayOfMonth(string $time = '0:0') |
| 77 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes quarterly() |
| 78 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes quarterlyOn(int $dayOfQuarter = 1, string $time = '0:0') |
| 79 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes yearly() |
| 80 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes yearlyOn(int $month = 1, int|string $dayOfMonth = 1, string $time = '0:0') |
| 81 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes days(array|mixed $days) |
| 82 | + * @method static \Illuminate\Console\Scheduling\PendingEventAttributes timezone(\DateTimeZone|string $timezone) |
21 | 83 | *
|
22 | 84 | * @see \Illuminate\Console\Scheduling\Schedule
|
23 | 85 | */
|
|
0 commit comments