initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Interfaces;
|
||||
|
||||
interface UserRepositoryInterface
|
||||
{
|
||||
public function getAllUsers();
|
||||
public function getUserById($userId);
|
||||
public function deleteUser($userId);
|
||||
public function createUser(array $userData);
|
||||
public function updateUser($userId, array $userData);
|
||||
}
|
||||
Reference in New Issue
Block a user