classes/bfw/mvc/model/dokumentation/Model.php
changeset 10 b441d3c0f572
parent 9 8c2f3735a9bd
child 11 16e5372a872e
deleted file mode 100644
--- a/classes/bfw/mvc/model/dokumentation/Model.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-
-/**
- * Copyright(C) 2015 Markus Bröker<broeker.markus@googlemail.com>
- *
- */
-
-namespace bfw\mvc\model\dokumentation;
-
-use bfw\core\Entity;
-use bfw\entities\TGroup;
-use bfw\entities\TUser;
-
-class Model extends \bfw\core\Model {
-
-    private $user;
-    private $group;
-
-    /**
-     * Model constructor.
-     */
-    public function __construct() {
-        $this->user = new TUser();
-        $this->group = new TGroup();
-    }
-
-    /**
-     * @return Entity[]
-     */
-    public function getUsers() {
-        return $this->user->findAll();
-    }
-
-    /**
-     * @return Entity[]
-     */
-    public function getGroups() {
-        return $this->group->findAll();
-    }
-
-}
\ No newline at end of file