Doc + Mapper::class implementation

This commit is contained in:
Dennis Eichhorn 2016-03-09 23:11:51 +01:00
parent 22d50dbe6e
commit 1b717d12f3

View File

@ -314,4 +314,11 @@ class Controller extends ModuleAbstract implements WebInterface
return $view;
}
public function apiAccountList(RequestAbstract $request, ResponseAbstract $response, $data = null)
{
// todo: instead of returning dom, maybe only return data and let ui handle presentation?!!?!?!?!!
$mapper = new AccountMapper($this->app->dbPool->get());
}
}