change model namespace to App\Model\Data
This commit is contained in:
parent
6ed63d591f
commit
6173d56fd4
10 changed files with 23 additions and 21 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Reference in a new issue