Method |
Description |
|
all ( ) : array |
Get all of the commands registered with the console. |
|
bootstrap ( ) : void |
Bootstrap the application for artisan commands. |
|
call ( string $command, array $parameters = [] ) : integer |
Run an Artisan console command by name. |
|
handle ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output = null ) : integer |
Run the console application. |
|
output ( ) : string |
Get the output for the last run command. |
|
queue ( string $command, array $parameters = [] ) : void |
Queue the given console command. |
|
registerCommand ( Command $command ) : void |
Register the given command with the console application. |
|
terminate ( Symfony\Component\Console\Input\InputInterface $input, integer $status ) : void |
Terminate the application. |
|