Dispatcher

Dispatcher interface Dispatcher (View source) Methods void send(Collection|array|mixed $notifiables, mixed $notification) Send the given notification to the given notifiable entities. void sendNow(Collection|array|mixed $notifiables, mixed $notification) Send the given notification immediately.

Store

Store interface Store (View source) Methods mixed get(string|array $key) Retrieve an item from the cache by key. array many(array $keys) Retrieve multiple items from the cache by key. void put(string $key, mixed $value, float|int $minutes) Store an item in the cache for a given number of minutes. void putMany(array $values, float|int $minutes) Store multiple items in the cache for a given number of minutes. int|bool increment(string $key, mixed $value = 1) Increment th

Queue\Connectors

Illuminate\Queue\Connectors Classes BeanstalkdConnector IronConnector RedisConnector SqsConnector SyncConnector

ResetCommand::comment()

void comment(string $string, null|int|string $verbosity = null) Write a string as comment output. Parameters string $string null|int|string $verbosity Return Value void

MySqlGrammar::compileChange()

array compileChange(Blueprint $blueprint, Fluent $command, Connection $connection) Compile a change column command into a series of SQL statements. Parameters Blueprint $blueprint Fluent $command Connection $connection Return Value array Exceptions RuntimeException

MorphOneOrMany::noConstraints()

static mixed noConstraints(Closure $callback) Run a callback with constraints disabled on the relation. Parameters Closure $callback Return Value mixed

InstallCommand::setLaravel()

void setLaravel(Application $laravel) Set the Laravel application instance. Parameters Application $laravel Return Value void

Validator

Validator class Validator implements Validator (View source) Methods void __construct(TranslatorInterface $translator, array $data, array $rules, array $messages = array(), array $customAttributes = array()) Create a new Validator instance. array parseData(array $data) Parse the data array. $this after(callable|string $callback) After an after validation callback. void sometimes(string $attribute, string|array $rules, callable $callback) Add conditions to a given field base

MySqlGrammar::compileDropUnique()

string compileDropUnique(Blueprint $blueprint, Fluent $command) Compile a drop unique key command. Parameters Blueprint $blueprint Fluent $command Return Value string

EventFake::fired()

Collection fired(string $event, callable|null $callback = null) Get all of the events matching a truth-test callback. Parameters string $event callable|null $callback Return Value Collection