|
29 | 29 | */ |
30 | 30 | interface Zend_Controller_Action_Interface |
31 | 31 | { |
32 | | - /** |
33 | | - * Class constructor |
34 | | - * |
35 | | - * The request and response objects should be registered with the |
36 | | - * controller, as should be any additional optional arguments; these will be |
37 | | - * available via {@link getRequest()}, {@link getResponse()}, and |
38 | | - * {@link getInvokeArgs()}, respectively. |
39 | | - * |
40 | | - * When overriding the constructor, please consider this usage as a best |
41 | | - * practice and ensure that each is registered appropriately; the easiest |
42 | | - * way to do so is to simply call parent::__construct($request, $response, |
43 | | - * $invokeArgs). |
44 | | - * |
45 | | - * After the request, response, and invokeArgs are set, the |
46 | | - * {@link $_helper helper broker} is initialized. |
47 | | - * |
48 | | - * Finally, {@link init()} is called as the final action of |
49 | | - * instantiation, and may be safely overridden to perform initialization |
50 | | - * tasks; as a general rule, override {@link init()} instead of the |
51 | | - * constructor to customize an action controller's instantiation. |
52 | | - * |
53 | | - * @param Zend_Controller_Request_Abstract $request |
54 | | - * @param Zend_Controller_Response_Abstract $response |
55 | | - * @param array $invokeArgs Any additional invocation arguments |
56 | | - * @return void |
57 | | - */ |
58 | | - public function __construct(Zend_Controller_Request_Abstract $request, |
59 | | - Zend_Controller_Response_Abstract $response, |
60 | | - array $invokeArgs = array()); |
61 | | - |
62 | 32 | /** |
63 | 33 | * Dispatch the requested action |
64 | 34 | * |
|
0 commit comments