W3cubDocs

/Symfony 4.1

ContainerCommandLoader

class ContainerCommandLoader implements CommandLoaderInterface

Loads commands from a PSR-11 container.

Methods

__construct(ContainerInterface $container, array $commandMap)
Command get(string $name)

Loads a command.

bool has(string $name)

Checks if a command exists.

string[] getNames()

Details

__construct(ContainerInterface $container, array $commandMap)

Parameters

ContainerInterface $container A container from which to load command services
array $commandMap An array with command names as keys and service ids as values

Command get(string $name)

Loads a command.

Parameters

string $name

Return Value

Command

Exceptions

CommandNotFoundException

bool has(string $name)

Checks if a command exists.

Parameters

string $name

Return Value

bool

string[] getNames()

Return Value

string[] All registered command names

© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Console/CommandLoader/ContainerCommandLoader.html