Kernel
class Kernel implements Kernel (View source)
Methods
void
int
handle(
InputInterface $input,
OutputInterface $output = null)
Run the console application.
void
terminate(
InputInterface $input,
int $status)
Terminate the application.
void
registerCommand(
Command $command)
Register the given command with the console application.
int
call(
string $command,
array $parameters = array())
Run an Artisan console command by name.
int
queue(
string $command,
array $parameters = array())
Queue the given console command.
array
all()
Get all of the commands registered with the console.
string
output()
Get the output for the last run command.
void
bootstrap()
Bootstrap the application for artisan commands.
Details
at line line 67
void
__construct(
Application $app,
Dispatcher $events)
Create a new console kernel instance.
at line line 102
int
handle(
InputInterface $input,
OutputInterface $output = null)
Run the console application.
at line line 154
void
registerCommand(
Command $command)
Register the given command with the console application.
at line line 166
int
call(
string $command,
array $parameters = array())
Run an Artisan console command by name.
at line line 180
int
queue(
string $command,
array $parameters = array())
Queue the given console command.