class CommandController (View source)

Properties

protected Kernel $kernel The console kernel.
protected Factory $validationFactory The validation factory implementation.

Methods

void
__construct(Kernel $kernel, Factory $validationFactory)

Create a new controller instance.

Response
__invoke()

Get artisan commands.

Response
execute(Request $request)

Execute artisan command.

string
flatten(array $parameters)

Flatten command parameters.

Command
resolve(string $name)

Resolve command from kernel.

array
rules(Command $command)

Build command validation rules.

Details

void __construct(Kernel $kernel, Factory $validationFactory)

Create a new controller instance.

Parameters

Kernel $kernel
Factory $validationFactory

Return Value

void

Response __invoke()

Get artisan commands.

Return Value

Response

Response execute(Request $request)

Execute artisan command.

Parameters

Request $request

Return Value

Response

Exceptions

NotFoundHttpException

protected string flatten(array $parameters)

Flatten command parameters.

Parameters

array $parameters

Return Value

string

protected Command resolve(string $name)

Resolve command from kernel.

Parameters

string $name Command name

Return Value

Command

Exceptions

NotFoundHttpException

protected array rules(Command $command)

Build command validation rules.

Parameters

Command $command

Return Value

array