Command
class Command extends Command (View source)
Properties
protected Application | $laravel | The Laravel application instance. | |
protected InputInterface | $input | The input interface implementation. | |
protected OutputStyle | $output | The output interface implementation. | |
protected string | $signature | The name and signature of the console command. | |
protected string | $name | The console command name. | |
protected string | $description | The console command description. |
Methods
void | __construct() Create a new console command instance. | |
void | configureUsingFluentDefinition() Configure the console command using a fluent definition. | |
void | specifyParameters() Specify the arguments and options on the command. | |
int | run(InputInterface $input, OutputInterface $output) Run the console command. | |
mixed | execute(InputInterface $input, OutputInterface $output) Execute the console command. | |
int | call(string $command, array $arguments = []) Call another console command. | |
int | callSilent(string $command, array $arguments = []) Call another console command silently. | |
string|array | argument(string $key = null) Get the value of a command argument. | |
string|array | option(string $key = null) Get the value of a command option. | |
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) Write a string as information output. | |
void | line(string $string) Write a string as standard output. | |
void | comment(string $string) Write a string as comment output. | |
void | question(string $string) Write a string as question output. | |
void | error(string $string) Write a string as error output. | |
void | warn(string $string) Write a string as warning output. | |
array | getArguments() Get the console command arguments. | |
array | getOptions() Get the console command options. | |
OutputInterface | getOutput() Get the output implementation. | |
Application | getLaravel() Get the Laravel application instance. | |
void | setLaravel(Application $laravel) Set the Laravel application instance. |
Details
void __construct()
Create a new console command instance.
protected void configureUsingFluentDefinition()
Configure the console command using a fluent definition.
protected void specifyParameters()
Specify the arguments and options on the command.
int run(InputInterface $input, OutputInterface $output)
Run the console command.
protected mixed execute(InputInterface $input, OutputInterface $output)
Execute the console command.
int call(string $command, array $arguments = [])
Call another console command.
int callSilent(string $command, array $arguments = [])
Call another console command silently.
string|array argument(string $key = null)
Get the value of a command argument.
string|array option(string $key = null)
Get the value of a command option.
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)
Write a string as information output.
void line(string $string)
Write a string as standard output.
void comment(string $string)
Write a string as comment output.
void question(string $string)
Write a string as question output.
void error(string $string)
Write a string as error output.
void warn(string $string)
Write a string as warning output.
protected array getArguments()
Get the console command arguments.
protected array getOptions()
Get the console command options.
OutputInterface getOutput()
Get the output implementation.
Application getLaravel()
Get the Laravel application instance.
void setLaravel(Application $laravel)
Set the Laravel application instance.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.1/Illuminate/Console/Command.html