Schedule::exec()

Event exec(string $command, array $parameters = array()) Add a new command event to the schedule. Parameters string $command array $parameters Return Value Event

Schedule::events()

array events() Get all of the events on the schedule. Return Value array

Rule::__call()

mixed __call(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

Rule::__callStatic()

static mixed __callStatic(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

Schedule

Schedule class Schedule (View source) Methods Event call(string $callback, array $parameters = array()) Add a new callback event to the schedule. Event command(string $command, array $parameters = array()) Add a new Artisan command event to the schedule. Event 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 sch

Schedule::call()

Event call(string $callback, array $parameters = array()) Add a new callback event to the schedule. Parameters string $callback array $parameters Return Value Event

Rule::unique()

static Unique unique(string $table, string $column = 'NULL') Get a unique constraint builder instance. Parameters string $table string $column Return Value Unique

Rule::exists()

static Exists exists(string $table, string $column = 'NULL') Get a exists constraint builder instance. Parameters string $table string $column Return Value Exists

Rule::hasMacro()

static bool hasMacro(string $name) Checks if macro is registered. Parameters string $name Return Value bool

Rule::macro()

static void macro(string $name, callable $macro) Register a custom macro. Parameters string $name callable $macro Return Value void