mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-07-06 20:00:48 +02:00
Initial commit
Functional, without SSO
This commit is contained in:
14
sources/app/models/Storage/User.php
Normal file
14
sources/app/models/Storage/User.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Storage;
|
||||
|
||||
interface User
|
||||
{
|
||||
public function fetchAll();
|
||||
|
||||
public function fetchByUsername($username);
|
||||
|
||||
public function save(\App\User\User $user);
|
||||
|
||||
public function delete(\App\User\User $user);
|
||||
}
|
Reference in New Issue
Block a user