mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-09 14:07:25 +01:00
Implemented interfaces
This commit is contained in:
parent
8ead5a5df4
commit
fc3f7f3898
@ -1,6 +1,8 @@
|
||||
<?php
|
||||
namespace App\Controller;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevinfrantz
|
||||
|
@ -1,6 +1,8 @@
|
||||
<?php
|
||||
namespace App\Controller;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevinfrantz
|
||||
@ -8,5 +10,29 @@ namespace App\Controller;
|
||||
*/
|
||||
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
|
||||
{}
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user