ViewClearCommand::question()

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

ViewClearCommand::option()

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

ViewClearCommand::getLaravel()

Application getLaravel() Get the Laravel application instance. Return Value Application

ViewClearCommand::comment()

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

ViewClearCommand::error()

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

ViewClearCommand::confirm()

bool confirm(string $question, bool $default = false) Confirm a question with the user. Parameters string $question bool $default Return Value bool

ViewClearCommand::fire()

void fire() Execute the console command. Return Value void

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

ViewClearCommand::ask()

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

ViewClearCommand::argument()

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