class Schedule (View source)

Methods

call( string $callback, array $parameters = array())

Add a new callback event to the schedule.

command( string $command, array $parameters = array())

Add a new Artisan command event to the schedule.

exec( string $command, array $parameters = array())

Add a new command event to the schedule.

array
events()

Get all of the events on the schedule.

array
dueEvents( Application $app)

Get all of the events on the schedule that are due.

Details

at line line 24
Event call( string $callback, array $parameters = array())

Add a new callback event to the schedule.

Parameters

string $callback
array $parameters

Return Value

Event

at line line 38
Event command( string $command, array $parameters = array())

Add a new Artisan command event to the schedule.

Parameters

string $command
array $parameters

Return Value

Event

at line line 62
Event exec( string $command, array $parameters = array())

Add a new command event to the schedule.

Parameters

string $command
array $parameters

Return Value

Event

at line line 91
array events()

Get all of the events on the schedule.

Return Value

array

at line line 102
array dueEvents( Application $app)

Get all of the events on the schedule that are due.

Parameters

Application $app

Return Value

array