Added draft for get routing

This commit is contained in:
Kevin Frantz
2018-07-14 18:50:47 +02:00
parent ceb83e20f1
commit d966cbc35d
9 changed files with 144 additions and 36 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace controller\user;
/**
*
* @author kevinfrantz
*
*/
final class User implements UserInterface
{
public function logout(): void
{}
public function login(): void
{}
public function register(): void
{}
}