StorageLinkCommand
class StorageLinkCommand extends Command (View source)
Methods
void | __construct() Create a new console command instance. | from Command |
int | run(InputInterface $input, OutputInterface $output) Run the console command. | from Command |
int | call(string $command, array $arguments = array()) Call another console command. | from Command |
int | callSilent(string $command, array $arguments = array()) Call another console command silently. | from Command |
bool | hasArgument(string|int $name) Determine if the given argument is present. | from Command |
string|array | argument(string $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 | option(string $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 |
string | ask(string $question, string $default = null) Prompt the user for input. | from Command |
string | anticipate(string $question, array $choices, string $default = null) Prompt the user for input with auto completion. | from Command |
string | askWithCompletion(string $question, array $choices, string $default = null) Prompt the user for input with auto completion. | from Command |
string | 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 $default = null, mixed $attempts = null, bool $multiple = null) Give the user a single choice from an array of answers. | from Command |
void | table(array $headers, Arrayable|array $rows, string $style = 'default') Format input to textual table. | from Command |
void | info(string $string, null|int|string $verbosity = null) Write a string as information output. | from Command |
void | line(string $string, string $style = null, null|int|string $verbosity = null) Write a string as standard output. | from Command |
void | comment(string $string, null|int|string $verbosity = null) Write a string as comment output. | from Command |
void | question(string $string, null|int|string $verbosity = null) Write a string as question output. | from Command |
void | error(string $string, null|int|string $verbosity = null) Write a string as error output. | from Command |
void | warn(string $string, null|int|string $verbosity = null) Write a string as warning output. | from Command |
OutputInterface | 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 | fire() Execute the console command. |
Please login to continue.