ConsoleApplicationInterface
in
An interface defining the methods that the console runner depend on.
Table of Contents
Methods
- bootstrap() : void
- Load all the application configuration and bootstrap logic.
- console() : CommandCollection
- Define the console commands for an application.
Methods
bootstrap()
Load all the application configuration and bootstrap logic.
public
bootstrap() : void
Override this method to add additional bootstrap logic for your application.
console()
Define the console commands for an application.
public
console(CommandCollection $commands) : CommandCollection
Parameters
- $commands : CommandCollection
-
The CommandCollection to add commands into.
Return values
CommandCollection —The updated collection.