From fd1a472de7702ad219a55099cd7522cb5ffac87a Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Thu, 29 Oct 2009 20:11:04 -0400 Subject: [PATCH] object instantiation style --- framework/Controller/lib/Horde/Controller/Dispatcher.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Controller/lib/Horde/Controller/Dispatcher.php b/framework/Controller/lib/Horde/Controller/Dispatcher.php index f58da88b7..db8611629 100644 --- a/framework/Controller/lib/Horde/Controller/Dispatcher.php +++ b/framework/Controller/lib/Horde/Controller/Dispatcher.php @@ -89,7 +89,7 @@ class Horde_Controller_Dispatcher // Make sure we have an inflector if (!$this->_inflector) { - $this->_inflector = new Horde_Support_Inflector; + $this->_inflector = new Horde_Support_Inflector(); } } @@ -110,7 +110,7 @@ class Horde_Controller_Dispatcher */ public function dispatch(Horde_Controller_Request_Base $request, $response = null) { - $t = new Horde_Support_Timer; + $t = new Horde_Support_Timer(); $t->push(); if (! $response instanceof Horde_Controller_Response_Base) { -- 2.11.0