Archived
1
0
Fork 0

change model namespace to App\Model\Data

This commit is contained in:
Henrik Hautakoski 2018-04-02 23:35:49 +02:00
parent 6ed63d591f
commit 6173d56fd4
10 changed files with 23 additions and 21 deletions

View file

@ -4,11 +4,13 @@ namespace App\Controller;
use App\Controller\ControllerBase;
use Form\Login as LoginForm;
class AuthController extends ControllerBase
{
public function indexAction()
{
$form = new Form\Login();
$form = new LoginForm();
if ($this->request->isPost()) {
$data = $this->request->getPost();