From 133299c653ecd0139b12e898a186f3c15dfdaf8b Mon Sep 17 00:00:00 2001 From: mark_story Date: Tue, 3 Nov 2009 09:02:17 -0500 Subject: [PATCH] Removing duplicate constructor from ShellDispatcher. Fixes warnings under PHP5.3. Fixes #132 --- cake/console/cake.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cake/console/cake.php b/cake/console/cake.php index 2210beecf..cfd118302 100644 --- a/cake/console/cake.php +++ b/cake/console/cake.php @@ -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);