Package Cake\Console
Package summary
Class summary
- 
	
ConsoleErrorHandler
Error Handler for Cake console. Does simple printing of the exception that occurred and the stack trace of the error.
 - 
	
ConsoleInput
Object wrapper for interacting with stdin
 - 
	
ConsoleInputArgument
An object to represent a single argument used in the command line. ConsoleOptionParser creates these when you use addArgument()
 - 
	
ConsoleInputOption
An object to represent a single option used in the command line. ConsoleOptionParser creates these when you use addOption()
 - 
	
ConsoleInputSubcommand
An object to represent a single subcommand used in the command line. Created when you call ConsoleOptionParser::addSubcommand()
 - 
	
ConsoleOptionParser
Handles parsing the ARGV in the command line and provides support for GetOpt compatible option definition. Provides a builder pattern implementation for creating shell option parsers.
 - 
	
ConsoleOutput
Object wrapper for outputting information from a shell application. Can be connected to any stream resource that can be used with fopen()
 - 
	
HelpFormatter
HelpFormatter formats help for console shells. Can format to either text or XML formats. Uses ConsoleOptionParser methods to generate help.
 - 
	
Shell
Base class for command-line utilities for automating programmer chores.
 - 
	
ShellDispatcher
Shell dispatcher handles dispatching cli commands.
 - 
	
TaskCollection
Collection object for Tasks. Provides features for lazily loading tasks, and firing callbacks on loaded tasks.