22 lines
327 B
PHP
Raw Normal View History

2018-09-05 15:46:14 +02:00
<?php
namespace App\Controller;
2018-09-05 15:49:22 +02:00
use Symfony\Component\HttpFoundation\Response;
2018-09-05 15:46:14 +02:00
/**
*
* @author kevinfrantz
*
*/
class UserController implements UserControllerInterface
{
2018-09-05 15:49:22 +02:00
public function logout(): Response
{}
public function login(): Response
{}
public function register(): Response
{}
2018-09-05 16:00:12 +02:00
}