public function __construct(Application $app, $module, $action)
 {
     parent::__construct($app, $module);
     $this->setAction($action);
 }
 public function __construct(Application $app, $module, $section = null)
 {
     parent::__construct($app, $module);
     $this->setSection($section);
 }
 /**
  * Initialize the configuration file.
  * @param Application $app    The application.
  * @param string      $module The module.
  */
 public function __construct(Application $app, $module)
 {
     parent::__construct($app, $module);
 }