File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77use Zend \Console \Console ;
88use Zend \Console \Response as ConsoleResponse ;
99use Zend \EventManager \AbstractListenerAggregate ;
10+ use Zend \EventManager \Event ;
1011use Zend \EventManager \EventManagerInterface ;
1112use Zend \Http \PhpEnvironment \Request ;
1213use Zend \Http \PhpEnvironment \Response as HttpResponse ;
@@ -84,11 +85,11 @@ public function attach(EventManagerInterface $events, $priority = 1)
8485 }
8586
8687 /**
87- * @param MvcEvent $e
88+ * @param Event $e
8889 *
8990 * @return void
9091 */
91- public function exceptionError (MvcEvent $ e )
92+ public function exceptionError (Event $ e )
9293 {
9394 $ exception = $ e ->getParam ('exception ' );
9495 if (!$ exception ) {
@@ -103,11 +104,11 @@ public function exceptionError(MvcEvent $e)
103104 }
104105
105106 /**
106- * @param MvcEvent $e
107+ * @param Event $e
107108 *
108109 * @return void
109110 */
110- public function phpError (MvcEvent $ e )
111+ public function phpError (Event $ e )
111112 {
112113 register_shutdown_function ([$ this , 'execOnShutdown ' ]);
113114 set_error_handler ([$ this , 'phpErrorHandler ' ]);
You can’t perform that action at this time.
0 commit comments