Make classes final

This commit is contained in:
Dennis Eichhorn 2018-12-01 20:50:27 +01:00
parent c0935a07a0
commit 02390974da
5 changed files with 5 additions and 5 deletions

View File

@ -32,7 +32,7 @@ use phpOMS\Views\View;
* @link http://website.orange-management.de
* @since 1.0.0
*/
class BackendController extends Controller
final class BackendController extends Controller
{
/**

View File

@ -22,7 +22,7 @@ namespace Modules\Comments\Models;
* @link http://website.orange-management.de
* @since 1.0.0
*/
class Comment
final class Comment
{
private $id = 0;

View File

@ -22,7 +22,7 @@ namespace Modules\Comments\Models;
* @link http://website.orange-management.de
* @since 1.0.0
*/
class CommentList
final class CommentList
{
private $id = 0;

View File

@ -28,7 +28,7 @@ use phpOMS\DataStorage\Database\RelationType;
* @link http://website.orange-management.de
* @since 1.0.0
*/
class CommentListMapper extends DataMapperAbstract
final class CommentListMapper extends DataMapperAbstract
{
/**

View File

@ -27,7 +27,7 @@ use phpOMS\DataStorage\Database\RelationType;
* @link http://website.orange-management.de
* @since 1.0.0
*/
class CommentMapper extends DataMapperAbstract
final class CommentMapper extends DataMapperAbstract
{
/**