Command

Command

class Command extends Command (View source)

Methods

void __construct()

Create a new console command instance.

int run(InputInterface $input, OutputInterface $output)

Run the console command.

int call(string $command, array $arguments = array())

Call another console command.

int callSilent(string $command, array $arguments = array())

Call another console command silently.

bool hasArgument(string|int $name)

Determine if the given argument is present.

string|array argument(string $key = null)

Get the value of a command argument.

array arguments()

Get all of the arguments passed to the command.

bool hasOption(string $name)

Determine if the given option is present.

string|array option(string $key = null)

Get the value of a command option.

array options()

Get all of the options passed to the command.

bool confirm(string $question, bool $default = false)

Confirm a question with the user.

string ask(string $question, string $default = null)

Prompt the user for input.

string anticipate(string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

string askWithCompletion(string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

string secret(string $question, bool $fallback = true)

Prompt the user for input but hide the answer from the console.

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.

void table(array $headers, Arrayable|array $rows, string $style = 'default')

Format input to textual table.

void info(string $string, null|int|string $verbosity = null)

Write a string as information output.

void line(string $string, string $style = null, null|int|string $verbosity = null)

Write a string as standard output.

void comment(string $string, null|int|string $verbosity = null)

Write a string as comment output.

void question(string $string, null|int|string $verbosity = null)

Write a string as question output.

void error(string $string, null|int|string $verbosity = null)

Write a string as error output.

void warn(string $string, null|int|string $verbosity = null)

Write a string as warning output.

OutputInterface getOutput()

Get the output implementation.

Application getLaravel()

Get the Laravel application instance.

void setLaravel(Container $laravel)

Set the Laravel application instance.

doc_Laravel
2016-11-02 16:11:51
Comments
Leave a Comment

Please login to continue.