From fd05d3c09751a608254ac501ac5aab21694c2995 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 1 Dec 2018 20:50:27 +0100 Subject: [PATCH] Make classes final --- Controller/BackendController.php | 2 +- Models/Log.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Controller/BackendController.php b/Controller/BackendController.php index 06b838e..9187ab9 100644 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -31,7 +31,7 @@ use phpOMS\Views\View; * @link http://website.orange-management.de * @since 1.0.0 */ -class BackendController extends Controller +final class BackendController extends Controller { /** diff --git a/Models/Log.php b/Models/Log.php index f6a39dc..bec64eb 100644 --- a/Models/Log.php +++ b/Models/Log.php @@ -1,6 +1,6 @@