Removing duplicate constructor from ShellDispatcher.

Fixes warnings under PHP5.3.
Fixes #132
This commit is contained in:
mark_story 2009-11-03 09:02:17 -05:00
parent 6b043c6c57
commit 133299c653

View file

@ -118,14 +118,6 @@ class ShellDispatcher {
* @param array $args the argv.
*/
function ShellDispatcher($args = array()) {
$this->__construct($args);
}
/**
* Constructor
*
* @param array $args the argv.
*/
function __construct($args = array()) {
set_time_limit(0);
$this->__initConstants();
$this->parseParams($args);