AuthServiceProvider::compiles()

static array compiles() Get a list of files that should be compiled for the package. Return Value array

Redirect::swap()

static void swap(mixed $instance) Hotswap the underlying instance behind the facade. Parameters mixed $instance Return Value void

User::offsetUnset()

void offsetUnset(mixed $offset) Unset the value for a given offset. Parameters mixed $offset Return Value void

Collection::first()

mixed first(callable $callback = null, mixed $default = null) Get the first item from the collection. Parameters callable $callback mixed $default Return Value mixed

Collection::shuffle()

Collection shuffle(int $seed = null) Shuffle the items in the collection. Parameters int $seed Return Value Collection

ReminderRepositoryInterface::create()

string create(RemindableInterface $user) Create a new reminder record and token. Parameters RemindableInterface $user Return Value string

Collection::isEmpty()

bool isEmpty() Determine if the collection is empty or not. Return Value bool

Blueprint::dropUnique()

Fluent dropUnique(string|array $index) Indicate that the given unique key should be dropped. Parameters string|array $index Return Value Fluent

ReminderRepositoryInterface

ReminderRepositoryInterface interface ReminderRepositoryInterface (View source) Methods string create(RemindableInterface $user) Create a new reminder record and token. bool exists(RemindableInterface $user, string $token) Determine if a reminder record exists and is valid. void delete(string $token) Delete a reminder record by token. void deleteExpired() Delete expired reminders.

RouteClearCommand::info()

void info(string $string) Write a string as information output. Parameters string $string Return Value void