FileLoader::addNamespace()

void addNamespace(string $namespace, string $hint) Add a new namespace to the loader. Parameters string $namespace string $hint Return Value void

RemindersTableCommand::comment()

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

Builder::setConnection()

$this setConnection(Connection $connection) Set the database connection instance. Parameters Connection $connection Return Value $this

Application::registerDeferredProvider()

void registerDeferredProvider(string $provider, string $service = null) Register a deferred provider and service. Parameters string $provider string $service Return Value void

Guard

Guard class Guard implements Guard (View source) Methods void __construct(UserProvider $provider, SessionInterface $session, Request $request = null) Create a new authentication guard. bool check() Determine if the current user is authenticated. bool guest() Determine if the current user is a guest. Authenticatable|null user() Get the currently authenticated user. int|null id() Get the ID for the currently authenticated user. bool once(array $credentials = array()

BroadcastController::getMiddleware()

array getMiddleware() Get the middleware assigned to the controller. Return Value array

Writer::setEventDispatcher()

void setEventDispatcher(Dispatcher $dispatcher) Set the event dispatcher instance. Parameters Dispatcher $dispatcher Return Value void

ConnectionInterface

ConnectionInterface interface ConnectionInterface (View source) Methods Builder table(string $table) Begin a fluent query against a database table. Expression raw(mixed $value) Get a new raw query expression. mixed selectOne(string $query, array $bindings = array()) Run a select statement and return a single result. array select(string $query, array $bindings = array()) Run a select statement against the database. bool insert(string $query, array $bindings = array()) R

MailQueue::queue()

mixed queue(string|array $view, array $data, Closure|string $callback, string $queue = null) Queue a new e-mail message for sending. Parameters string|array $view array $data Closure|string $callback string $queue Return Value mixed

BcryptHasher::check()

bool check(string $value, string $hashedValue, array $options = array()) Check the given plain value against a hash. Parameters string $value string $hashedValue array $options Return Value bool