PasswordBroker::validateNewPassword()

bool validateNewPassword(array $credentials) Determine if the passwords match for the request. Parameters array $credentials Return Value bool

ResponseFactory::json()

JsonResponse json(string|array $data = array(), int $status = 200, array $headers = array(), int $options) Return a new JSON response from the application. Parameters string|array $data int $status array $headers int $options Return Value JsonResponse

ConnectionResolver

ConnectionResolver class ConnectionResolver implements ConnectionResolverInterface (View source) Methods void __construct(array $connections = array()) Create a new connection resolver instance. ConnectionInterface connection(string $name = null) Get a database connection instance. void addConnection(string $name, ConnectionInterface $connection) Add a connection to the resolver. bool hasConnection(string $name) Check if a connection has been registered. string getDefa

RouteCollection::count()

int count() Count the number of items in the collection. Return Value int

FileLoader

FileLoader class FileLoader implements LoaderInterface (View source) Methods void __construct(Filesystem $files, string $path) Create a new file loader instance. array load(string $locale, string $group, string $namespace = null) Load the messages for the given locale. void addNamespace(string $namespace, string $hint) Add a new namespace to the loader.

Parser

Parser class Parser (View source) Methods static array parse(string $expression) Parse the given console command definition into an array.

ForgetFailedCommand::anticipate()

string anticipate(string $question, array $choices, string $default = null) Prompt the user for input with auto completion. Parameters string $question array $choices string $default Return Value string

Contracts\Auth

Illuminate\Contracts\Auth Interfaces Authenticatable CanResetPassword Guard PasswordBroker Registrar UserProvider

InteractsWithPages

InteractsWithPages trait InteractsWithPages (View source) Methods $this visit(string $uri) Visit the given URI with a GET request. $this visitRoute(string $route, array $parameters = array()) Visit the given named route with a GET request. $this within(string $element, Closure $callback) Narrow the test content to a specific area of the page. $this see(string $text, bool $negate = false) Assert that a given string is seen on the current HTML. $this dontSee(string $text

BelongsToMany::wherePivotIn()

BelongsToMany wherePivotIn(string $column, mixed $values, string $boolean = 'and', bool $not = false) Set a "where in" clause for a pivot table column. Parameters string $column mixed $values string $boolean bool $not Return Value BelongsToMany