From 4e2dff4591bb2062311c1d5bfcdca3ade2a76d16 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 9 Jan 2022 18:21:40 +0100 Subject: Add spell checking with typos (#4138) * Add spell checking with typos Implement https://github.com/FreshRSS/FreshRSS/pull/4134#issuecomment-1008027558 * GitHub Actions attempt * Quiet wget * Makefile --- lib/Minz/ActionController.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lib/Minz/ActionController.php') diff --git a/lib/Minz/ActionController.php b/lib/Minz/ActionController.php index cf41a4819..1d29d4c20 100644 --- a/lib/Minz/ActionController.php +++ b/lib/Minz/ActionController.php @@ -5,7 +5,7 @@ */ /** - * La classe ActionController représente le contrôleur de l'application + * The Minz_ActionController class is a controller in the MVC paradigm */ class Minz_ActionController { protected $view; @@ -16,9 +16,6 @@ class Minz_ActionController { // Gives the possibility to override the default View type. public static $viewType = 'Minz_View'; - /** - * Constructeur - */ public function __construct () { if (class_exists(self::$viewType)) { $this->view = new self::$viewType(); -- cgit v1.2.3