Methods |
public
|
__construct(): void
Create a new console command instance.
Create a new console command instance.
Overrides
Overriden by
|
#
|
protected
|
configureUsingFluentDefinition(): void
Configure the console command using a fluent definition.
Configure the console command using a fluent definition.
|
#
|
protected
|
configureIsolation(): void
Configure the console command for isolation.
Configure the console command for isolation.
|
#
|
public
|
run(InputInterface $input, OutputInterface $output): int
Run the console command.
|
#
|
protected
|
execute(InputInterface $input, OutputInterface $output): int
Execute the console command.
Execute the console command.
Returns
0 if everything went fine, or an exit code
Overrides
|
#
|
protected
|
commandIsolationMutex(): CommandMutex
Get a command isolation mutex instance for the command.
Get a command isolation mutex instance for the command.
|
#
|
protected
|
resolveCommand(Command|string $command): Command
Resolve the console command instance for the given command.
Resolve the console command instance for the given command.
|
#
|
public
|
fail(Throwable|string|null $exception = null): void
Fail the command manually.
Fail the command manually.
Throws
|
#
|
public
|
isHidden(): bool
{@inheritdoc}
Returns
whether the command should be publicly shown or not
Overrides
|
#
|
public
|
setHidden(bool $hidden = true): static
{@inheritdoc}
Parameters
$hidden |
Whether or not the command should be hidden from the list of commands
|
Overrides
|
#
|
public
|
getLaravel(): Application
Get the Laravel application instance.
Get the Laravel application instance.
|
#
|
public
|
setLaravel(Container $laravel): void
Set the Laravel application instance.
Set the Laravel application instance.
|
#
|