UpCommand::run()

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

UpCommand::confirm()

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

UpCommand::getOutput()

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

UpCommand::error()

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

UpCommand::fire()

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

UpCommand::getLaravel()

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

UpCommand::comment()

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

UpCommand::callSilent()

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

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

UpCommand::call()

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