Überarbeitete MVC-Struktur, die ich jetzt auch nachvollziehen kann.
<?php
/**
* Copyright(C) 2015 Markus Bröker<broeker.markus@googlemail.com>
*
*/
namespace bfw\mvc\model\dokumentation;
use bfw\entities\TGroup;
use bfw\entities\TUser;
class Model extends \bfw\core\Model {
private $user;
private $group;
public function __construct() {
$this->user = new TUser();
$this->group = new TGroup();
}
public function getUsers() {
return $this->user->findAll();
}
public function getGroups() {
return $this->group->findAll();
}
}