/**
  * Overwrites the parent display and runs the tests first
  *
  * @see \App\Common\Controllers\appController::display()
  *
  * @param array $args
  *            Params of the display
  */
 public function display(array $args)
 {
     /* Run the tests */
     $this->model->checkAll();
     /* Display the results */
     parent::display($args);
 }
 /**
  * Default inherited constructor for the capturesController class
  *
  * @param CapturesModel $model
  *            Data model of the Captures page
  * @param CapturesView $view
  *            View representation of the Captures page
  */
 public function __construct(CapturesModel $model, CapturesView $view)
 {
     parent::__construct($model, $view);
 }
 /**
  * Default inherited constructor for the managerController class
  *
  * @param ManagerModel $model
  *            Data model of the Manager page
  * @param ManagerView $view
  *            View representation of the Manager page
  */
 public function __construct(ManagerModel $model, ManagerView $view)
 {
     parent::__construct($model, $view);
 }
 /**
  * Default inherited constructor for the settingsController class
  *
  * @param SettingsModel $model
  *            Data model of the Settings page
  * @param SettingsView $view
  *            View representation of the Settings page
  */
 public function __construct(SettingsModel $model, SettingsView $view)
 {
     parent::__construct($model, $view);
 }
 /**
  * Default inherited constructor for the storageController class
  *
  * @param StorageModel $model
  *            Data model of the Storage page
  * @param StorageView $view
  *            View representation of the Storage page
  */
 public function __construct(StorageModel $model, StorageView $view)
 {
     parent::__construct($model, $view);
 }