RoutesCommand::setLaravel()

void setLaravel(Application $laravel) Set the Laravel application instance. Parameters Application $laravel Return Value void

RoutesCommand::option()

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

RoutesCommand::secret()

string secret(string $question, bool $fallback = true) Prompt the user for input but hide the answer from the console. Parameters string $question bool $fallback Return Value string

RoutesCommand::line()

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

RoutesCommand::fire()

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

RoutesCommand::info()

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

RoutesCommand::getOutput()

OutputInterface getOutput() Get the output implementation. Return Value OutputInterface

RoutesCommand::getLaravel()

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

RoutesCommand::choice()

bool 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 bool

RoutesCommand::comment()

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