From b1421543cee35e515c1466ef7a9348f84f40e6f7 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 1 Dec 2018 21:21:11 +0100 Subject: [PATCH] Models cannot be final because of NullModels --- Models/Comment.php | 2 +- Models/CommentList.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/Comment.php b/Models/Comment.php index 765ecbb..27cb365 100644 --- a/Models/Comment.php +++ b/Models/Comment.php @@ -22,7 +22,7 @@ namespace Modules\Comments\Models; * @link http://website.orange-management.de * @since 1.0.0 */ -final class Comment +class Comment { private $id = 0; diff --git a/Models/CommentList.php b/Models/CommentList.php index 76fd0cb..061a53f 100644 --- a/Models/CommentList.php +++ b/Models/CommentList.php @@ -22,7 +22,7 @@ namespace Modules\Comments\Models; * @link http://website.orange-management.de * @since 1.0.0 */ -final class CommentList +class CommentList { private $id = 0;