interface Kernel (View source)

Methods

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

Handle an incoming console command.

int
call( string $command, array $parameters = array())

Run an Artisan console command by name.

int
queue( string $command, array $parameters = array())

Queue an Artisan console command by name.

array
all()

Get all of the commands registered with the console.

string
output()

Get the output for the last run command.

Details

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

Handle an incoming console command.

Parameters

InputInterface $input
OutputInterface $output

Return Value

int

at line line 23
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 32
int queue( string $command, array $parameters = array())

Queue an Artisan console command by name.

Parameters

string $command
array $parameters

Return Value

int

at line line 39
array all()

Get all of the commands registered with the console.

Return Value

array

at line line 46
string output()

Get the output for the last run command.

Return Value

string