class Kernel implements Kernel (View source)

Methods

void
__construct( Application $app, Dispatcher $events)

Create a new console kernel instance.

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.

Parameters

Application $app
Dispatcher $events

Return Value

void

at line line 102
int handle( InputInterface $input, OutputInterface $output = null)

Run the console application.

Parameters

InputInterface $input
OutputInterface $output

Return Value

int

at line line 132
void terminate( InputInterface $input, int $status)

Terminate the application.

Parameters

InputInterface $input
int $status

Return Value

void

at line line 154
void registerCommand( Command $command)

Register the given command with the console application.

Parameters

Command $command

Return Value

void

at line line 166
int call( string $command, array $parameters = array())

Run an Artisan console command by name.

Parameters

string $command
array $parameters

Return Value

int

at line line 180
int queue( string $command, array $parameters = array())

Queue the given console command.

Parameters

string $command
array $parameters

Return Value

int

at line line 192
array all()

Get all of the commands registered with the console.

Return Value

array

at line line 204
string output()

Get the output for the last run command.

Return Value

string

at line line 216
void bootstrap()

Bootstrap the application for artisan commands.

Return Value

void