OptimizeClearCommand
class OptimizeClearCommand extends Command (View source)
Traits
Macroable |
Properties
static protected array | $macros | The registered string macros. | from Macroable |
protected Application | $laravel | The Laravel application instance. | from Command |
protected InputInterface | $input | The input interface implementation. | from Command |
protected OutputStyle | $output | The output interface implementation. | from Command |
protected string | $signature | The name and signature of the console command. | from Command |
protected string | $name | The console command name. | |
protected string | $description | The console command description. | |
$hidden | Indicates whether the command should be shown in the Artisan command list. | from Command | |
protected int | $verbosity | The default verbosity of output commands. | from Command |
protected array | $verbosityMap | The mapping between human readable verbosity levels and Symfony's OutputInterface. | from Command |
Methods
static void | macro(string $name, object|callable $macro) Register a custom macro. | from Macroable |
static void | mixin(object $mixin) Mix another object into the class. | from Macroable |
static bool | hasMacro(string $name) Checks if macro is registered. | from Macroable |
static mixed | __callStatic(string $method, array $parameters) Dynamically handle calls to the class. | from Macroable |
mixed | __call(string $method, array $parameters) Dynamically handle calls to the class. | from Macroable |
void | __construct() Create a new console command instance. | from Command |
void | configureUsingFluentDefinition() Configure the console command using a fluent definition. | from Command |
void | specifyParameters() Specify the arguments and options on the command. | from Command |
int | run(InputInterface $input, OutputInterface $output) Run the console command. | from Command |
mixed | execute(InputInterface $input, OutputInterface $output) Execute the console command. | from Command |
int | call(string $command, array $arguments = []) Call another console command. | from Command |
int | callSilent(string $command, array $arguments = []) Call another console command silently. | from Command |
ArrayInput | createInputFromArguments(array $arguments) Create an input instance from the given arguments. | from Command |
bool | hasArgument(string|int $name) Determine if the given argument is present. | from Command |
string|array|null | argument(string|null $key = null) Get the value of a command argument. | from Command |
array | arguments() Get all of the arguments passed to the command. | from Command |
bool | hasOption(string $name) Determine if the given option is present. | from Command |
string|array|null | option(string|null $key = null) Get the value of a command option. | from Command |
array | options() Get all of the options passed to the command. | from Command |
bool | confirm(string $question, bool $default = false) Confirm a question with the user. | from Command |
mixed | ask(string $question, string|null $default = null) Prompt the user for input. | from Command |
mixed | anticipate(string $question, array $choices, string|null $default = null) Prompt the user for input with auto completion. | from Command |
mixed | askWithCompletion(string $question, array $choices, string|null $default = null) Prompt the user for input with auto completion. | from Command |
mixed | secret(string $question, bool $fallback = true) Prompt the user for input but hide the answer from the console. | from Command |
string | choice(string $question, array $choices, string|null $default = null, mixed|null $attempts = null, bool|null $multiple = null) Give the user a single choice from an array of answers. | from Command |
void | table(array $headers, Arrayable|array $rows, string $tableStyle = 'default', array $columnStyles = []) Format input to textual table. | from Command |
void | info(string $string, int|string|null $verbosity = null) Write a string as information output. | from Command |
void | line(string $string, string $style = null, int|string|null $verbosity = null) Write a string as standard output. | from Command |
void | comment(string $string, int|string|null $verbosity = null) Write a string as comment output. | from Command |
void | question(string $string, int|string|null $verbosity = null) Write a string as question output. | from Command |
void | error(string $string, int|string|null $verbosity = null) Write a string as error output. | from Command |
void | warn(string $string, int|string|null $verbosity = null) Write a string as warning output. | from Command |
void | alert(string $string) Write a string in an alert box. | from Command |
void | setVerbosity(string|int $level) Set the verbosity level. | from Command |
int | parseVerbosity(string|int|null $level = null) Get the verbosity level in terms of Symfony's OutputInterface level. | from Command |
array | getArguments() Get the console command arguments. | from Command |
array | getOptions() Get the console command options. | from Command |
OutputStyle | getOutput() Get the output implementation. | from Command |
Application | getLaravel() Get the Laravel application instance. | from Command |
void | setLaravel(Container $laravel) Set the Laravel application instance. | from Command |
void | handle() Execute the console command. |
Details
static void macro(string $name, object|callable $macro)
Register a custom macro.
static void mixin(object $mixin)
Mix another object into the class.
static bool hasMacro(string $name)
Checks if macro is registered.
static mixed __callStatic(string $method, array $parameters)
Dynamically handle calls to the class.
mixed __call(string $method, array $parameters)
Dynamically handle calls to the class.
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.
protected ArrayInput createInputFromArguments(array $arguments)
Create an input instance from the given arguments.
bool hasArgument(string|int $name)
Determine if the given argument is present.
string|array|null 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|null option(string|null $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.
mixed ask(string $question, string|null $default = null)
Prompt the user for input.
mixed anticipate(string $question, array $choices, string|null $default = null)
Prompt the user for input with auto completion.
mixed askWithCompletion(string $question, array $choices, string|null $default = null)
Prompt the user for input with auto completion.
mixed 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|null $default = null, mixed|null $attempts = null, bool|null $multiple = null)
Give the user a single choice from an array of answers.
void table(array $headers, Arrayable|array $rows, string $tableStyle = 'default', array $columnStyles = [])
Format input to textual table.
void info(string $string, int|string|null $verbosity = null)
Write a string as information output.
void line(string $string, string $style = null, int|string|null $verbosity = null)
Write a string as standard output.
void comment(string $string, int|string|null $verbosity = null)
Write a string as comment output.
void question(string $string, int|string|null $verbosity = null)
Write a string as question output.
void error(string $string, int|string|null $verbosity = null)
Write a string as error output.
void warn(string $string, int|string|null $verbosity = null)
Write a string as warning output.
void alert(string $string)
Write a string in an alert box.
protected void setVerbosity(string|int $level)
Set the verbosity level.
protected int parseVerbosity(string|int|null $level = null)
Get the verbosity level in terms of Symfony's OutputInterface level.
protected array getArguments()
Get the console command arguments.
protected array getOptions()
Get the console command options.
OutputStyle getOutput()
Get the output implementation.
Application getLaravel()
Get the Laravel application instance.
void setLaravel(Container $laravel)
Set the Laravel application instance.
void handle()
Execute the console command.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.7/Illuminate/Foundation/Console/OptimizeClearCommand.html