Bluz\Application\Application::postDispatch PHP Method

postDispatch() protected method

Post dispatch mount point
protected postDispatch ( string $module, string $controller, array $params = [] ) : void
$module string
$controller string
$params array
return void
    protected function postDispatch($module, $controller, $params = [])
    {
        Logger::info("<<<:dispatch:post: " . $module . '/' . $controller);
    }

Usage Example

 /**
  * {@inheritdoc}
  *
  * @param string $module
  * @param string $controller
  * @param array $params
  * @return void
  */
 protected function postDispatch($module, $controller, $params = array())
 {
     parent::postDispatch($module, $controller, $params);
 }