mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-04-29 15:58:39 +02:00
18 lines
224 B
PHP
18 lines
224 B
PHP
<?php
|
|
namespace controller\user;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface UserInterface
|
|
{
|
|
public function login():void;
|
|
|
|
public function logout():void;
|
|
|
|
public function register():void;
|
|
}
|
|
|