public function __construct(Application $app, $namespace, $bundleName, $actionName)
 {
     $this->init(__CLASS__);
     $this->logger->debug('Controller "' . $bundleName . 'Controller" started.');
     $this->app = $app;
     $this->namespace = $namespace;
     $this->bundleName = $bundleName;
     $this->actionName = $actionName;
     $this->view = new ViewFacade($app->getComponent('Symfony\\Request'), $app->getComponent('Symfony\\Response'));
     $this->notify();
 }