CommandMakeCommand::run()

int run(InputInterface $input, OutputInterface $output) Run the console command. Parameters InputInterface $input OutputInterface $output Return Value int

CommandMakeCommand::fire()

bool|null fire() Execute the command. Return Value bool|null

CommandMakeCommand::getLaravel()

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

CommandMakeCommand::getOutput()

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

CommandMakeCommand::info()

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

CommandMakeCommand::line()

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

CommandMakeCommand::option()

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

CommandMakeCommand::error()

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

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

CommandMakeCommand::comment()

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