public function __construct()
 {
     parent::__construct();
     $this->name = 'Frontend';
     $this->controller = $this->getController();
 }
 public function __construct()
 {
     parent::__construct();
     $this->name = 'Backend';
 }
 /**
  * Méthode de construction
  * Appelle le constructeur parent
  * et spécifie le nom de l'application
  * 
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     // Appel du constructeur parent
     $this->name = 'Frontend';
 }