Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Schedule.php
Строк: 626
<?php
namespace IlluminateSupportFacades;
use IlluminateConsoleSchedulingSchedule as ConsoleSchedule;
/**
* @method static IlluminateConsoleSchedulingCallbackEvent call(string|callable $callback, array $parameters = [])
* @method static IlluminateConsoleSchedulingEvent command(SymfonyComponentConsoleCommandCommand|string $command, array $parameters = [])
* @method static IlluminateConsoleSchedulingCallbackEvent job(object|string $job, UnitEnum|string|null $queue = null, UnitEnum|string|null $connection = null)
* @method static IlluminateConsoleSchedulingEvent exec(string $command, array $parameters = [])
* @method static void group(Closure $events)
* @method static string compileArrayInput(string|int $key, array $value)
* @method static bool serverShouldRun(IlluminateConsoleSchedulingEvent $event, DateTimeInterface $time)
* @method static IlluminateSupportCollection dueEvents(IlluminateContractsFoundationApplication $app)
* @method static IlluminateConsoleSchedulingEvent[] events()
* @method static IlluminateConsoleSchedulingEvent[] eventsForEnvironments(array $environments)
* @method static IlluminateConsoleSchedulingSchedule useCache(UnitEnum|string $store)
* @method static void withoutInterruptionPolling()
* @method static void macro(string $name, object|callable $macro)
* @method static void mixin(object $mixin, bool $replace = true)
* @method static bool hasMacro(string $name)
* @method static void flushMacros()
* @method static mixed macroCall(string $method, array $parameters)
* @method static IlluminateConsoleSchedulingPendingEventAttributes withoutOverlapping(int $expiresAt = 1440, bool $releaseOnTerminationSignals = true)
* @method static void mergeAttributes(IlluminateConsoleSchedulingEvent $event)
* @method static IlluminateConsoleSchedulingPendingEventAttributes user(string $user)
* @method static IlluminateConsoleSchedulingPendingEventAttributes environments(mixed $environments)
* @method static IlluminateConsoleSchedulingPendingEventAttributes evenInMaintenanceMode()
* @method static IlluminateConsoleSchedulingPendingEventAttributes evenWhenPaused()
* @method static IlluminateConsoleSchedulingPendingEventAttributes onOneServer()
* @method static IlluminateConsoleSchedulingPendingEventAttributes runInBackground()
* @method static IlluminateConsoleSchedulingPendingEventAttributes when(Closure|bool $callback)
* @method static IlluminateConsoleSchedulingPendingEventAttributes skip(Closure|bool $callback)
* @method static IlluminateConsoleSchedulingPendingEventAttributes name(string $description)
* @method static IlluminateConsoleSchedulingPendingEventAttributes description(string $description)
* @method static IlluminateConsoleSchedulingPendingEventAttributes withAttributes(array $attributes)
* @method static IlluminateConsoleSchedulingPendingEventAttributes cron(string $expression)
* @method static IlluminateConsoleSchedulingPendingEventAttributes between(string $startTime, string $endTime)
* @method static IlluminateConsoleSchedulingPendingEventAttributes unlessBetween(string $startTime, string $endTime)
* @method static IlluminateConsoleSchedulingPendingEventAttributes everySecond()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyTwoSeconds()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyFiveSeconds()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyTenSeconds()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyFifteenSeconds()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyTwentySeconds()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyThirtySeconds()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyMinute()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyTwoMinutes()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyThreeMinutes()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyFourMinutes()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyFiveMinutes()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyTenMinutes()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyFifteenMinutes()
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyThirtyMinutes()
* @method static IlluminateConsoleSchedulingPendingEventAttributes hourly()
* @method static IlluminateConsoleSchedulingPendingEventAttributes hourlyAt(array|string|int|int[] $offset)
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyOddHour(array|string|int $offset = 0)
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyTwoHours(array|string|int $offset = 0)
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyThreeHours(array|string|int $offset = 0)
* @method static IlluminateConsoleSchedulingPendingEventAttributes everyFourHours(array|string|int $offset = 0)
* @method static IlluminateConsoleSchedulingPendingEventAttributes everySixHours(array|string|int $offset = 0)
* @method static IlluminateConsoleSchedulingPendingEventAttributes daily()
* @method static IlluminateConsoleSchedulingPendingEventAttributes at(string $time)
* @method static IlluminateConsoleSchedulingPendingEventAttributes dailyAt(string $time)
* @method static IlluminateConsoleSchedulingPendingEventAttributes twiceDaily(int $first = 1, int $second = 13)
* @method static IlluminateConsoleSchedulingPendingEventAttributes twiceDailyAt(int $first = 1, int $second = 13, int $offset = 0)
* @method static IlluminateConsoleSchedulingPendingEventAttributes weekdays()
* @method static IlluminateConsoleSchedulingPendingEventAttributes weekends()
* @method static IlluminateConsoleSchedulingPendingEventAttributes mondays()
* @method static IlluminateConsoleSchedulingPendingEventAttributes tuesdays()
* @method static IlluminateConsoleSchedulingPendingEventAttributes wednesdays()
* @method static IlluminateConsoleSchedulingPendingEventAttributes thursdays()
* @method static IlluminateConsoleSchedulingPendingEventAttributes fridays()
* @method static IlluminateConsoleSchedulingPendingEventAttributes saturdays()
* @method static IlluminateConsoleSchedulingPendingEventAttributes sundays()
* @method static IlluminateConsoleSchedulingPendingEventAttributes weekly()
* @method static IlluminateConsoleSchedulingPendingEventAttributes weeklyOn(mixed $dayOfWeek, string $time = '0:0')
* @method static IlluminateConsoleSchedulingPendingEventAttributes monthly()
* @method static IlluminateConsoleSchedulingPendingEventAttributes monthlyOn(int $dayOfMonth = 1, string $time = '0:0')
* @method static IlluminateConsoleSchedulingPendingEventAttributes twiceMonthly(int $first = 1, int $second = 16, string $time = '0:0')
* @method static IlluminateConsoleSchedulingPendingEventAttributes lastDayOfMonth(string $time = '0:0')
* @method static IlluminateConsoleSchedulingPendingEventAttributes daysOfMonth(array|int ...$days)
* @method static IlluminateConsoleSchedulingPendingEventAttributes quarterly()
* @method static IlluminateConsoleSchedulingPendingEventAttributes quarterlyOn(int $dayOfQuarter = 1, string $time = '0:0')
* @method static IlluminateConsoleSchedulingPendingEventAttributes yearly()
* @method static IlluminateConsoleSchedulingPendingEventAttributes yearlyOn(int $month = 1, int|string $dayOfMonth = 1, string $time = '0:0')
* @method static IlluminateConsoleSchedulingPendingEventAttributes days(mixed $days)
* @method static IlluminateConsoleSchedulingPendingEventAttributes timezone(UnitEnum|DateTimeZone|string $timezone)
*
* @see IlluminateConsoleSchedulingSchedule
*/
class Schedule extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return ConsoleSchedule::class;
}
}