@@ -52,49 +52,49 @@ public function __construct(array $forwardHandlerNotFound = null, array $forward
52
52
$ this ->forwardUnhandledException = $ forwardUnhandledException ;
53
53
}
54
54
55
- /**
56
- * Handled when the dispatcher throws an exception of any kind.
57
- *
55
+ /**
56
+ * Handled when the dispatcher throws an exception of any kind.
57
+ *
58
58
* @param \Phalcon\Events\Event $event The beforeDispatchLoop event.
59
59
* @param \Phalcon\Mvc\Dispatcher $dispatcher The application dispatcher instance.
60
60
* @param \Exception $exception The exception being handled.
61
61
*
62
62
* @return void|false Returns <tt>false</tt> if the exception is dispatched to a specific error handler; otherwise
63
63
* returns <tt>null</tt>.
64
- */
65
- public function beforeException (Event $ event , Dispatcher $ dispatcher , Exception $ exception )
66
- {
67
- if ($ exception instanceof DispatcherException) {
64
+ */
65
+ public function beforeException (Event $ event , Dispatcher $ dispatcher , Exception $ exception )
66
+ {
67
+ if ($ exception instanceof DispatcherException) {
68
68
69
- switch ($ exception ->getCode ()) {
69
+ switch ($ exception ->getCode ()) {
70
70
case Dispatcher::EXCEPTION_HANDLER_NOT_FOUND :
71
71
return $ this ->forward ($ dispatcher , $ this ->forwardHandlerNotFound );
72
72
73
73
74
74
case Dispatcher::EXCEPTION_ACTION_NOT_FOUND :
75
75
return $ this ->forward ($ dispatcher , $ this ->forwardActionNotFound );
76
- }
77
- }
76
+ }
77
+ }
78
78
79
- return $ this ->forward ($ dispatcher , $ this ->forwardUnhandledException );
80
- }
79
+ return $ this ->forward ($ dispatcher , $ this ->forwardUnhandledException );
80
+ }
81
81
82
- /**
83
- * Convenience helper method to ensure that only dispatched exceptions return <tt>false</tt>, which is
84
- * important as this stops the current dispatch loop.
85
- *
82
+ /**
83
+ * Convenience helper method to ensure that only dispatched exceptions return <tt>false</tt>, which is
84
+ * important as this stops the current dispatch loop.
85
+ *
86
86
* @param \Phalcon\Mvc\Dispatcher $dispatcher The application dispatcher instance.
87
- * @param array|null $forward Optional dispatch data.
88
- *
87
+ * @param array|null $forward Optional dispatch data.
88
+ *
89
89
* @return void|false Returns <tt>false</tt> if the exception is dispatched to a specific error handler; otherwise
90
90
* returns <tt>null</tt>.
91
- */
92
- private function forward (Dispatcher $ dispatcher , array $ forward = null )
93
- {
94
- if ($ forward !== null ) {
95
- $ dispatcher ->forward ($ forward );
91
+ */
92
+ private function forward (Dispatcher $ dispatcher , array $ forward = null )
93
+ {
94
+ if ($ forward !== null ) {
95
+ $ dispatcher ->forward ($ forward );
96
96
97
- return false ;
98
- }
99
- }
97
+ return false ;
98
+ }
99
+ }
100
100
}
0 commit comments