Kernel::command()

ClosureCommand command(string $signature, Closure $callback) Register a Closure based command with the application. Parameters string $signature Closure $callback Return Value ClosureCommand

Kernel::call()

int call(string $command, array $parameters = array()) Run an Artisan console command by name. Parameters string $command array $parameters Return Value int

Kernel::call()

int call(string $command, array $parameters = array()) Run an Artisan console command by name. Parameters string $command array $parameters Return Value int

Kernel::bootstrap()

void bootstrap() Bootstrap the application for HTTP requests. Return Value void

Kernel::bootstrap()

void bootstrap() Bootstrap the application for artisan commands. Return Value void

Kernel::bootstrap()

void bootstrap() Bootstrap the application for HTTP requests. Return Value void

Kernel::all()

array all() Get all of the commands registered with the console. Return Value array

Kernel::all()

array all() Get all of the commands registered with the console. Return Value array

Kernel

Kernel class Kernel implements Kernel (View source) Methods void __construct(Application $app, Router $router) Create a new HTTP kernel instance. Response handle(Request $request) Handle an incoming HTTP request. void terminate(Request $request, Response $response) Call the terminate method on any terminable middleware. $this prependMiddleware(string $middleware) Add a new middleware to beginning of the stack if it does not already exist. $this pushMiddleware(string $m

Kernel

Kernel 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. ClosureCommand command(string $signature, Closure $callback) Register a Closure based command with the application. void registerCommand(Command $c