Implemented interfaces

This commit is contained in:
Kevin Frantz 2018-09-05 15:49:22 +02:00
parent 8ead5a5df4
commit fc3f7f3898
2 changed files with 28 additions and 0 deletions

View File

@ -1,6 +1,8 @@
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
/**
*
* @author kevinfrantz

View File

@ -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
{}
}