Schedule
class Schedule extends Facade
Properties
| static protected | $app | The application instance being facaded. |
from Facade |
| static protected array | $resolvedInstance | The resolved object instances. |
from Facade |
| static protected bool | $cached | Indicates if the resolved instance should be cached. |
from Facade |
Methods
Get the registered name of the component.
Resolve the facade root instance from the container.
Clear a resolved facade instance.
Handle dynamic, static calls to the object.
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
Details
in
Facade at line 55
static void
resolved(Closure $callback)
Run a Closure when the facade has been resolved.
Boot-only. The callback is registered on the worker-global container and runs for every subsequent resolution of the facade accessor.
in
Facade at line 71
static
spy()
Convert the facade into a Mockery spy.
in
Facade at line 89
static
partialMock()
Initiate a partial mock on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
in
Facade at line 105
static
shouldReceive()
Initiate a mock expectation on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
in
Facade at line 121
static
expects()
Initiate a mock expectation on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
in
Facade at line 135
static protected
createFreshMockInstance()
Create a fresh mock instance for the given class.
in
Facade at line 147
static protected
createMock()
Create a fresh mock instance for the given class.
in
Facade at line 157
static protected bool
isMock()
Determines whether a mock is set as the instance of the facade.
in
Facade at line 168
static protected string|null
getMockableClass()
Get the mockable class for the bound instance.
in
Facade at line 184
static
swap(mixed $instance)
Hotswap the underlying instance behind the facade.
Tests only. Replaces the worker-wide resolved facade instance and container binding; runtime use races across coroutines and changes every subsequent facade call.
in
Facade at line 196
static bool
isFake()
Determines whether a "fake" has been set as the facade instance.
in
Facade at line 207
static mixed
getFacadeRoot()
Get the root object behind the facade.
at line 96
static protected string
getFacadeAccessor()
Get the registered name of the component.
in
Facade at line 223
static protected mixed
resolveFacadeInstance(string $name)
Resolve the facade root instance from the container.
in
Facade at line 246
static void
clearResolvedInstance(string|null $name = null)
Clear a resolved facade instance.
Boot or tests only. Clears a worker-wide facade cache entry; concurrent coroutines may still hold the previous resolved instance.
in
Facade at line 257
static void
clearResolvedInstances()
Clear all of the resolved instances.
Boot or tests only. Clears the worker-wide facade cache; concurrent coroutines may still hold previously resolved instances.
in
Facade at line 265
static Collection
defaultAliases()
Get the application default aliases.
in
Facade at line 324
static
getFacadeApplication()
Get the application instance behind the facade.
in
Facade at line 337
static void
setFacadeApplication(mixed $app)
Set the application instance.
Tests only. Replaces the worker-wide facade application reference; runtime use races across coroutines and breaks every facade lookup.
in
Facade at line 347
static
__callStatic(string $method, array $args)
Handle dynamic, static calls to the object.
at line 94
static CallbackEvent
call(callable|array|string $callback, array $parameters = '[]')
No description
at line 94
static Event
command(Command|string $command, array $parameters = '[]')
No description
at line 94
static CallbackEvent
job(object|string $job, UnitEnum|string|null $queue = 'null', UnitEnum|string|null $connection = 'null')
No description
at line 94
static Event
exec(string $command, array $parameters = '[]', bool $isSystem = 'true')
No description
at line 94
static void
group(Closure $events)
No description
at line 94
static string
compileArrayInput(string|int $key, array $value)
No description
at line 94
static bool
serverShouldRun(Event $event, DateTimeInterface $time)
No description
at line 94
static Collection
dueEvents(Application $app)
No description
at line 94
static array
events()
No description
at line 94
static Schedule
useCache(UnitEnum|string|null $store)
No description
at line 94
static void
macro(string $name, callable|object $macro)
No description
at line 94
static void
mixin(object $mixin, bool $replace = 'true')
No description
at line 94
static bool
hasMacro(string $name)
No description
at line 94
static void
flushMacros()
No description
at line 94
static mixed
macroCall(string $method, array $parameters)
No description
at line 94
static void
withoutInterruptionPolling()
No description
at line 94
static PendingEventAttributes
withoutOverlapping(int $expiresAt = '1440', bool $releaseOnTerminationSignals = 'true')
No description
at line 94
static void
mergeAttributes(Event $event)
No description
at line 94
static PendingEventAttributes
user(string $user)
No description
at line 94
static PendingEventAttributes
environments(array|mixed $environments)
No description
at line 94
static PendingEventAttributes
evenInMaintenanceMode()
No description
at line 94
static PendingEventAttributes
evenWhenPaused()
No description
at line 94
static PendingEventAttributes
onOneServer()
No description
at line 94
static PendingEventAttributes
runInBackground()
No description
at line 94
static PendingEventAttributes
when(Closure|bool $callback)
No description
at line 94
static PendingEventAttributes
skip(Closure|bool $callback)
No description
at line 94
static PendingEventAttributes
name(string $description)
No description
at line 94
static PendingEventAttributes
description(string $description)
No description
at line 94
static PendingEventAttributes
withAttributes(array $attributes)
No description
at line 94
static PendingEventAttributes
cron(string $expression)
No description
at line 94
static PendingEventAttributes
between(string $startTime, string $endTime)
No description
at line 94
static PendingEventAttributes
unlessBetween(string $startTime, string $endTime)
No description
at line 94
static PendingEventAttributes
everySecond()
No description
at line 94
static PendingEventAttributes
everyTwoSeconds()
No description
at line 94
static PendingEventAttributes
everyFiveSeconds()
No description
at line 94
static PendingEventAttributes
everyTenSeconds()
No description
at line 94
static PendingEventAttributes
everyFifteenSeconds()
No description
at line 94
static PendingEventAttributes
everyTwentySeconds()
No description
at line 94
static PendingEventAttributes
everyThirtySeconds()
No description
at line 94
static PendingEventAttributes
everyMinute()
No description
at line 94
static PendingEventAttributes
everyTwoMinutes()
No description
at line 94
static PendingEventAttributes
everyThreeMinutes()
No description
at line 94
static PendingEventAttributes
everyFourMinutes()
No description
at line 94
static PendingEventAttributes
everyFiveMinutes()
No description
at line 94
static PendingEventAttributes
everyTenMinutes()
No description
at line 94
static PendingEventAttributes
everyFifteenMinutes()
No description
at line 94
static PendingEventAttributes
everyThirtyMinutes()
No description
at line 94
static PendingEventAttributes
hourly()
No description
at line 94
static PendingEventAttributes
hourlyAt(array|int|int[]|string $offset)
No description
at line 94
static PendingEventAttributes
everyOddHour(array|string|int $offset = '0')
No description
at line 94
static PendingEventAttributes
everyTwoHours(array|string|int $offset = '0')
No description
at line 94
static PendingEventAttributes
everyThreeHours(array|string|int $offset = '0')
No description
at line 94
static PendingEventAttributes
everyFourHours(array|string|int $offset = '0')
No description
at line 94
static PendingEventAttributes
everySixHours(array|string|int $offset = '0')
No description
at line 94
static PendingEventAttributes
daily()
No description
at line 94
static PendingEventAttributes
at(string $time)
No description
at line 94
static PendingEventAttributes
dailyAt(string $time)
No description
at line 94
static PendingEventAttributes
twiceDaily(int $first = '1', int $second = '13')
No description
at line 94
static PendingEventAttributes
twiceDailyAt(int $first = '1', int $second = '13', int $offset = '0')
No description
at line 94
static PendingEventAttributes
weekdays()
No description
at line 94
static PendingEventAttributes
weekends()
No description
at line 94
static PendingEventAttributes
mondays()
No description
at line 94
static PendingEventAttributes
tuesdays()
No description
at line 94
static PendingEventAttributes
wednesdays()
No description
at line 94
static PendingEventAttributes
thursdays()
No description
at line 94
static PendingEventAttributes
fridays()
No description
at line 94
static PendingEventAttributes
saturdays()
No description
at line 94
static PendingEventAttributes
sundays()
No description
at line 94
static PendingEventAttributes
weekly()
No description
at line 94
static PendingEventAttributes
weeklyOn(array|mixed $dayOfWeek, string $time = '\'0:0\'')
No description
at line 94
static PendingEventAttributes
monthly()
No description
at line 94
static PendingEventAttributes
monthlyOn(int $dayOfMonth = '1', string $time = '\'0:0\'')
No description
at line 94
static PendingEventAttributes
twiceMonthly(int $first = '1', int $second = '16', string $time = '\'0:0\'')
No description
at line 94
static PendingEventAttributes
lastDayOfMonth(string $time = '\'0:0\'')
No description
at line 94
static PendingEventAttributes
daysOfMonth(int[]|int ...$days)
No description
at line 94
static PendingEventAttributes
quarterly()
No description
at line 94
static PendingEventAttributes
quarterlyOn(int $dayOfQuarter = '1', string $time = '\'0:0\'')
No description
at line 94
static PendingEventAttributes
yearly()
No description
at line 94
static PendingEventAttributes
yearlyOn(int $month = '1', string|int $dayOfMonth = '1', string $time = '\'0:0\'')
No description
at line 94
static PendingEventAttributes
days(array|mixed $days)
No description
at line 94
static PendingEventAttributes
timezone(UnitEnum|string $timezone)
No description