diff -r 5e7a0fedabdf -r 877f952ae2bd web/lib/Zend/Tool/Framework/Client/Abstract.php --- a/web/lib/Zend/Tool/Framework/Client/Abstract.php Thu Mar 21 17:31:31 2013 +0100 +++ b/web/lib/Zend/Tool/Framework/Client/Abstract.php Thu Mar 21 19:50:53 2013 +0100 @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Tool * @subpackage Framework - * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Abstract.php 23204 2010-10-21 15:35:21Z ralph $ + * @version $Id: Abstract.php 24593 2012-01-05 20:35:02Z matthew $ */ /** @@ -33,7 +33,7 @@ /** * @category Zend * @package Zend_Tool - * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ abstract class Zend_Tool_Framework_Client_Abstract implements Zend_Tool_Framework_Registry_EnabledInterface @@ -61,7 +61,7 @@ public function __construct($options = array()) { - // require autoloader + // require autoloader Zend_Loader_Autoloader::getInstance(); // this might look goofy, but this is setting up the @@ -70,7 +70,7 @@ $registry->setClient($this); // NOTE: at this moment, $this->_registry should contain the registry object - + if ($options) { $this->setOptions($options); } @@ -110,7 +110,7 @@ $manifest = $this->_registry->getManifestRepository(); $manifest->addManifest(new Zend_Tool_Framework_Client_Manifest()); - + // setup the debug log if (!$this->_debugLogger instanceof Zend_Log) { require_once 'Zend/Log.php'; @@ -177,10 +177,10 @@ $this->_registry = $registry; return $this; } - + /** * getRegistry(); - * + * * @return Zend_Tool_Framework_Registry_Interface */ public function getRegistry() @@ -317,7 +317,7 @@ $this->_handleDispatchExecution($provider, $methodName, $callParameters); } - + protected function _handleDispatchExecution($class, $methodName, $callParameters) { if (method_exists($class, $methodName)) {