Skip to content

Commit

Permalink
Sloppy coding. Thank you travis CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
rianorie committed Feb 17, 2016
1 parent 4c596fe commit b859771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phalcon/dispatcher.zep
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ abstract class Dispatcher implements DispatcherInterface, InjectionAwareInterfac
try {

// We update the latest value produced by the latest handler
let this->_returnedValue = call_user_func_array([handler, actionMethod], params),
let this->_returnedValue = call_user_func_array([handler, actionMethod], params);

} catch \Exception, e {
if this->{"_handleException"}(e) === false {
Expand All @@ -517,7 +517,7 @@ abstract class Dispatcher implements DispatcherInterface, InjectionAwareInterfac
throw e;
}
} finally {
this->_lastHandler = handler;
let this->_lastHandler = handler;
}

// Calling afterExecuteRoute
Expand Down

0 comments on commit b859771

Please sign in to comment.