Interface ConsoleApplicationInterface
An interface defining the methods that the console runner depend on.
        
    Namespace: Cake\Core
    
    
    
      
  
  
        Method Summary
- 
          bootstrap() publicLoad all the application configuration and bootstrap logic. 
- 
          console() publicDefine the console commands for an application. 
Method Detail
bootstrap() ¶ public
bootstrap(): voidLoad all the application configuration and bootstrap logic.
Override this method to add additional bootstrap logic for your application.
Returns
voidconsole() ¶ public
console(Cake\Console\CommandCollection $commands): Cake\Console\CommandCollectionDefine the console commands for an application.
Parameters
- 
                Cake\Console\CommandCollection$commands
- The CommandCollection to add commands into. 
Returns
Cake\Console\CommandCollectionThe updated collection.
