Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.8.0
-
Fix Version/s: 1.9.3
-
Component/s: Zend_Application
-
Labels:None
-
Tags:
Description
Right now if you only want to instantiate specific resources in the bootstrap, you're required to do this (after instantiating a Zend_Application object):
$application->getBootstrap()->bootstrap('resource');
The following won't work:
$application->bootstrap('resource');
This is because the bootstrap() wrapper of Zend_Application doesn't proxy the arguments to Zend_Application_Bootstrap_BootstrapAbstract.
I suggest that the the implementation of the bootstrap() method in Zend_Application is changed so that doing this is possible.
set component and auto reassign