Class CommandRunner
Run CLI commands for the provided application.
Property Summary
-
$_eventClass protected
string
Default class name for new event objects.
-
$_eventManager protected
Cake\Event\EventManagerInterfaceCake\Event\EventManager
Instance of the Cake\Event\EventManager this object is using to dispatch inner events.
-
$aliases protected
array
Alias mappings.
-
$app protected
Cake\Core\ConsoleApplicationInterface
The application console commands are being run for.
-
$factory protected
Cake\Console\CommandFactoryInterface
The application console commands are being run for.
-
$root protected
string
The root command name. Defaults to
cake
.
Method Summary
-
__construct() public
Constructor
-
bootstrap() protected
Application bootstrap wrapper.
-
checkCollection() protected deprecated
Check the created CommandCollection
-
createShell() protected
The wrapper for creating shell instances.
-
dispatchEvent() public
Wrapper for creating and dispatching events.
-
eventManager() public deprecated
Get/set the application's event manager.
-
getEventManager() public
Get the application's event manager or the global one.
-
getShell() protected
Get the shell instance for a given command name
-
loadRoutes() protected
Ensure that the application's routes are loaded.
-
resolveName() protected
Resolve the command name into a name that exists in the collection.
-
run() public
Run the command contained in $argv.
-
runShell() protected
Execute a Shell class.
-
setAliases() public
Replace the entire alias map for a runner.
-
setEventManager() public
Get/set the application's event manager.
Method Detail
__construct() ¶ public
__construct(Cake\Core\ConsoleApplicationInterface $app, string $root = 'cake', Cake\Console\CommandFactoryInterface|null $factory = null)
Constructor
Parameters
-
Cake\Core\ConsoleApplicationInterface
$app The application to run CLI commands for.
-
string
$root optional The root command name to be removed from argv.
-
Cake\Console\CommandFactoryInterface|null
$factory optional Command factory instance.
bootstrap() ¶ protected
bootstrap(): void
Application bootstrap wrapper.
Calls bootstrap()
and events()
if application implements EventApplicationInterface
.
After the application is bootstrapped and events are attached, plugins are bootstrapped
and have their events attached.
Returns
void
checkCollection() ¶ protected
checkCollection(mixed $commands, string $method): void
Check the created CommandCollection
Parameters
-
mixed
$commands The CommandCollection to check, could be anything though.
-
string
$method The method that was used.
Returns
void
Throws
RuntimeException
createShell() ¶ protected
createShell(string $className, Cake\Console\ConsoleIo $io): Cake\Console\ShellCake\Console\Command
The wrapper for creating shell instances.
Parameters
-
string
$className Shell class name.
-
Cake\Console\ConsoleIo
$io The IO wrapper for the created shell class.
Returns
Cake\Console\ShellCake\Console\Command
dispatchEvent() ¶ public
dispatchEvent(string $name, array|null $data = null, object|null $subject = null): Cake\Event\Event
Wrapper for creating and dispatching events.
Returns a dispatched event.
Parameters
-
string
$name Name of the event.
-
array|null
$data optional Any value you wish to be transported with this event to it can be read by listeners.
-
object|null
$subject optional The object that this event applies to ($this by default).
Returns
Cake\Event\Event
eventManager() ¶ public
eventManager(Cake\Event\EventManager|null $events = null): Cake\Event\EventManager|$this
Get/set the application's event manager.
If the application does not support events and this method is used as a setter, an exception will be raised.
Parameters
-
Cake\Event\EventManager|null
$events optional The event manager to set.
Returns
Cake\Event\EventManager|$this
getEventManager() ¶ public
getEventManager(): Cake\Event\EventManagerInterface
Get the application's event manager or the global one.
You can use this instance to register any new listeners or callbacks to the object events, or create your own events and trigger them at will.
Returns
Cake\Event\EventManagerInterface
getShell() ¶ protected
getShell(Cake\Console\ConsoleIo $io, Cake\Console\CommandCollection $commands, string $name): Cake\Console\ShellCake\Console\Command
Get the shell instance for a given command name
Parameters
-
Cake\Console\ConsoleIo
$io The IO wrapper for the created shell class.
-
Cake\Console\CommandCollection
$commands The command collection to find the shell in.
-
string
$name The command name to find
Returns
Cake\Console\ShellCake\Console\Command
loadRoutes() ¶ protected
loadRoutes(): void
Ensure that the application's routes are loaded.
Console commands and shells often need to generate URLs.
Returns
void
resolveName() ¶ protected
resolveName(Cake\Console\CommandCollection $commands, Cake\Console\ConsoleIo $io, string $name): string
Resolve the command name into a name that exists in the collection.
Apply backwards compatible inflections and aliases.
Parameters
-
Cake\Console\CommandCollection
$commands The command collection to check.
-
Cake\Console\ConsoleIo
$io ConsoleIo object for errors.
-
string
$name The name from the CLI args.
Returns
string
run() ¶ public
run(array $argv, Cake\Console\ConsoleIo $io = null): int
Run the command contained in $argv.
Use the application to do the following:
- Bootstrap the application
- Create the CommandCollection using the console() hook on the application.
- Trigger the
Console.buildCommands
event of auto-wiring plugins. - Run the requested command.
Parameters
-
array
$argv The arguments from the CLI environment.
-
Cake\Console\ConsoleIo
$io optional The ConsoleIo instance. Used primarily for testing.
Returns
int
Throws
RuntimeException
runShell() ¶ protected
runShell(Cake\Console\Shell $shell, array $argv): int
Execute a Shell class.
Parameters
-
Cake\Console\Shell
$shell The shell to run.
-
array
$argv The CLI arguments to invoke.
Returns
int
setAliases() ¶ public
setAliases(array $aliases): $this
Replace the entire alias map for a runner.
Aliases allow you to define alternate names for commands
in the collection. This can be useful to add top level switches
like --version
or -h
Usage
$runner->setAliases(['--version' => 'version']);
Parameters
-
array
$aliases The map of aliases to replace.
Returns
$this
setEventManager() ¶ public
setEventManager(Cake\Event\EventManager $events): $this
Get/set the application's event manager.
If the application does not support events and this method is used as a setter, an exception will be raised.
Parameters
-
Cake\Event\EventManager
$events The event manager to set.
Returns
$this
Property Detail
$_eventManager ¶ protected
Instance of the Cake\Event\EventManager this object is using to dispatch inner events.
Type
Cake\Event\EventManagerInterfaceCake\Event\EventManager
$app ¶ protected
The application console commands are being run for.
Type
Cake\Core\ConsoleApplicationInterface
$factory ¶ protected
The application console commands are being run for.
Type
Cake\Console\CommandFactoryInterface