mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-10-10 17:58:07 +02:00
Implemented interfaces
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace App\Controller;
|
namespace App\Controller;
|
||||||
|
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@@ -1,6 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace App\Controller;
|
namespace App\Controller;
|
||||||
|
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
@@ -8,5 +10,29 @@ namespace App\Controller;
|
|||||||
*/
|
*/
|
||||||
class UserController implements UserControllerInterface
|
class UserController implements UserControllerInterface
|
||||||
{
|
{
|
||||||
|
public function modify(int $id): Response
|
||||||
|
{}
|
||||||
|
|
||||||
|
public function logout(): Response
|
||||||
|
{}
|
||||||
|
|
||||||
|
public function activate(): Response
|
||||||
|
{}
|
||||||
|
|
||||||
|
public function create(): Response
|
||||||
|
{}
|
||||||
|
|
||||||
|
public function login(): Response
|
||||||
|
{}
|
||||||
|
|
||||||
|
public function delete(): Response
|
||||||
|
{}
|
||||||
|
|
||||||
|
public function register(): Response
|
||||||
|
{}
|
||||||
|
|
||||||
|
public function deactivate(): Response
|
||||||
|
{}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user