RequestMakeCommand::call()

int call(string $command, array $arguments = array()) Call another console command. Parameters string $command array $arguments Return Value int

RequestMakeCommand::askWithCompletion()

string askWithCompletion(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

RequestMakeCommand::ask()

string ask(string $question, string $default = null) Prompt the user for input. Parameters string $question string $default Return Value string

RequestMakeCommand::argument()

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

RequestMakeCommand::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

RequestMakeCommand

RequestMakeCommand class RequestMakeCommand extends GeneratorCommand (View source) Methods void __construct(Filesystem $files) Create a new controller creator command instance. from GeneratorCommand int run(InputInterface $input, OutputInterface $output) Run the console command. from Command int call(string $command, array $arguments = array()) Call another console command. from Command int callSilent(string $command, array $arguments = array()) Call another console command si

RequestGuard::__construct()

void __construct(callable $callback, Request $request) Create a new authentication guard. Parameters callable $callback Request $request Return Value void

RequestGuard::validate()

bool validate(array $credentials = array()) Validate a user's credentials. Parameters array $credentials Return Value bool

RequestGuard::user()

Authenticatable|null user() Get the currently authenticated user. Return Value Authenticatable|null

RequestGuard::setUser()

$this setUser(Authenticatable $user) Set the current user. Parameters Authenticatable $user Return Value $this