From 96214378d64fded4a987b84408decd5ed93fb2dd Mon Sep 17 00:00:00 2001 From: julien Date: Mon, 9 Mar 2026 17:06:59 +0100 Subject: [PATCH] Minor changes --- public/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.php b/public/index.php index 1c3e9d8..4d7fcea 100644 --- a/public/index.php +++ b/public/index.php @@ -13,7 +13,7 @@ use App\Controllers\PostController; use App\Repositories\PostRepository; use App\Services\HtmlSanitizer; use App\Services\HtmlPurifierFactory; -use App\Database\Migration; +use App\Database\Migrator; use App\Bootstrap; use App\Routes; use App\Config; @@ -56,7 +56,7 @@ $db = new Medoo([ ]); // Exécuter les migrations -Migration::run($db); +Migrator::run($db); // HtmlPurifier (créé via la factory) $htmlPurifierCacheDir = __DIR__ . '/../var/cache/htmlpurifier';