Foundation\Auth

Illuminate\Foundation\Auth Classes AuthenticatesAndRegistersUsers ResetsPasswords

MySqlGrammar

MySqlGrammar class MySqlGrammar extends Grammar (View source) Methods array wrapArray(array $values) Wrap an array of values. from Grammar string wrapTable(Expression|string $table) Wrap a table in keyword identifiers. from Grammar string wrap(Expression|string $value, bool $prefixAlias = false) Wrap a value in keyword identifiers. from Grammar string columnize(array $columns) Convert an array of column names into a delimited string. from Grammar string parameterize(array

SortedMiddleware::search()

mixed search(mixed $value, bool $strict = false) Search the collection for a given value and return the corresponding key if successful. Parameters mixed $value bool $strict Return Value mixed

Middleware

Middleware Introduction Defining Middleware Registering Middleware Global Middleware Assigning Middleware To Routes Middleware Groups Middleware Parameters Terminable Middleware Introduction Middleware provide a convenient mechanism for filtering HTTP requests entering your application. For example, Laravel includes a middleware that verifies the user of your application is authenticated. If the user is not authenticated, the middleware will redirect the user to the login screen. However, i

MocksApplicationServices::doesntExpectEvents()

$this doesntExpectEvents(array|string $events) Specify a list of events that should not be fired for the given operation. These events will be mocked, so that handlers will not actually be executed. Parameters array|string $events Return Value $this

RollbackCommand::option()

string|array option(string $key = null) Get the value of a command option. Parameters string $key Return Value string|array

SetRequestForConsole

SetRequestForConsole class SetRequestForConsole (View source) Methods void bootstrap(Application $app) Bootstrap the given application.

SQLiteConnection::setPostProcessor()

void setPostProcessor(Processor $processor) Set the query post processor used by the connection. Parameters Processor $processor Return Value void

Contracts\Routing

Illuminate\Contracts\Routing Interfaces Middleware Registrar ResponseFactory TerminableMiddleware UrlGenerator UrlRoutable

RollbackCommand::choice()

string choice(string $question, array $choices, string $default = null, mixed $attempts = null, bool $multiple = null) Give the user a single choice from an array of answers. Parameters string $question array $choices string $default mixed $attempts bool $multiple Return Value string