-
(array) autodiscoverTasks ()
Browse code
Autodiscovers task classes.
returns An array of tasks instances
-
-
Configures the current command application.
-
Fixes php behavior if using cgi php.
-
Returns an array of possible abbreviations given a set of names.
-
(sfFormatter) getFormatter ()
Browse code
Returns the formatter instance.
returns The formatter instance
-
(string) getLongVersion ()
Browse code
Returns the long version of the application.
returns The long application version
-
Gets the name of the application.
returns The application name
-
(mixed) getOption ($name)
Browse code
Returns the value of a given option.
returns The option value
-
(sfTask) getTask ($name)
Browse code
| $name |
The task name or alias |
Returns a registered task by name or alias.
returns An sfTask object
-
Returns all registered tasks.
returns An array of sfTask objects
-
(sfTask) getTaskToExecute ($name)
Browse code
| $name |
The task name or a task shortcut |
Gets a task from a task name or a shortcut.
returns A sfTask object
-
(string) getVersion ()
Browse code
Gets the application version.
returns The application version
-
(sfFormatter) guessBestFormatter ($stream)
Browse code
Guesses the best formatter for the stream.
returns A formatter instance
-
handleOptions ($options)
Browse code
| $options |
The command line options |
Parses and handles command line options.
-
Outputs a help message for the current application.
-
(Boolean) isStreamSupportsColors ($stream)
Browse code
Returns true if the stream supports colorization.
Colorization is disabled if not supported by the stream:
- windows without ansicon
- non tty consoles
returns true if the stream supports colorization, false otherwise
-
(Boolean) isVerbose ()
Browse code
Returns whether the application must be verbose.
returns true if the application must be verbose, false otherwise
-
Registers a task object.
-
registerTasks ($tasks)
Browse code
Registers an array of task objects.
If you pass null, this method will register all available tasks.
-
Renders an exception.
-
(integer) run ($options)
Browse code
| $options |
The command line options |
Runs the current application.
returns 0 if everything went fine, or an error code
-
Sets the formatter instance.
-
| $name |
The application name |
Sets the application name.
-
| $version |
The application version |
Sets the application version.
-
-
(Boolean) withTrace ()
Browse code
Returns whether the application must activate the trace.
returns true if the application must activate the trace, false otherwise
-
__construct ($dispatcher, $formatter, $options)
Browse code
| $dispatcher |
A sfEventDispatcher instance |
| $formatter |
A sfFormatter instance |
| $options |
An array of options |
Constructor.