class Command extends Command

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.

protected bool $hidden

Indicates whether the command should be shown in the Artisan command list.

protected int $verbosity

The default verbosity of output commands.

protected array $verbosityMap

The mapping between human readable verbosity levels and Symfony's OutputInterface.

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.

bool
hasArgument(string|int $name)

Determine if the given argument is present.

string|array
argument(string|null $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.

void
alert(string $string)

Write a string in an alert box.

void
setVerbosity(string|int $level)

Set the verbosity level.

int
parseVerbosity(string|int $level = null)

Get the verbosity level in terms of Symfony's OutputInterface level.

array
getArguments()

Get the console command arguments.

array
getOptions()

Get the console command options.

OutputInterface
getOutput()

Get the output implementation.

getLaravel()

Get the Laravel application instance.

void
setLaravel(Container $laravel)

Set the Laravel application instance.

Details

at line 92
void __construct()

Create a new console command instance.

Return Value

void

at line 120
protected void configureUsingFluentDefinition()

Configure the console command using a fluent definition.

Return Value

void

at line 143
protected void specifyParameters()

Specify the arguments and options on the command.

Return Value

void

at line 164
int run(InputInterface $input, OutputInterface $output)

Run the console command.

Parameters

InputInterface $input
OutputInterface $output

Return Value

int

at line 178
protected mixed execute(InputInterface $input, OutputInterface $output)

Execute the console command.

Parameters

InputInterface $input
OutputInterface $output

Return Value

mixed

at line 192
int call(string $command, array $arguments = [])

Call another console command.

Parameters

string $command
array $arguments

Return Value

int

at line 208
int callSilent(string $command, array $arguments = [])

Call another console command silently.

Parameters

string $command
array $arguments

Return Value

int

at line 223
bool hasArgument(string|int $name)

Determine if the given argument is present.

Parameters

string|int $name

Return Value

bool

at line 234
string|array argument(string|null $key = null)

Get the value of a command argument.

Parameters

string|null $key

Return Value

string|array

at line 248
array arguments()

Get all of the arguments passed to the command.

Return Value

array

at line 259
bool hasOption(string $name)

Determine if the given option is present.

Parameters

string $name

Return Value

bool

at line 270
string|array option(string $key = null)

Get the value of a command option.

Parameters

string $key

Return Value

string|array

at line 284
array options()

Get all of the options passed to the command.

Return Value

array

at line 296
bool confirm(string $question, bool $default = false)

Confirm a question with the user.

Parameters

string $question
bool $default

Return Value

bool

at line 308
string ask(string $question, string $default = null)

Prompt the user for input.

Parameters

string $question
string $default

Return Value

string

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

Prompt the user for input with auto completion.

Parameters

string $question
array $choices
string $default

Return Value

string

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

Prompt the user for input with auto completion.

Parameters

string $question
array $choices
string $default

Return Value

string

at line 350
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

at line 369
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

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

Format input to textual table.

Parameters

array $headers
Arrayable|array $rows
string $style

Return Value

void

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

Write a string as information output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

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

Write a string as standard output.

Parameters

string $string
string $style
null|int|string $verbosity

Return Value

void

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

Write a string as comment output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

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

Write a string as question output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

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

Write a string as error output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

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

Write a string as warning output.

Parameters

string $string
null|int|string $verbosity

Return Value

void

at line 484
void alert(string $string)

Write a string in an alert box.

Parameters

string $string

Return Value

void

at line 499
protected void setVerbosity(string|int $level)

Set the verbosity level.

Parameters

string|int $level

Return Value

void

at line 510
protected int parseVerbosity(string|int $level = null)

Get the verbosity level in terms of Symfony's OutputInterface level.

Parameters

string|int $level

Return Value

int

at line 526
protected array getArguments()

Get the console command arguments.

Return Value

array

at line 536
protected array getOptions()

Get the console command options.

Return Value

array

at line 546
OutputInterface getOutput()

Get the output implementation.

Return Value

OutputInterface

at line 556
Application getLaravel()

Get the Laravel application instance.

Return Value

Application

at line 567
void setLaravel(Container $laravel)

Set the Laravel application instance.

Parameters

Container $laravel

Return Value

void