2024-05-13 20:06:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Interfaces;
|
|
|
|
|
|
|
|
interface MemberRepositoryInterface
|
|
|
|
{
|
|
|
|
public function getAll();
|
|
|
|
|
|
|
|
public function getByID($id);
|
|
|
|
|
|
|
|
public function getByHandle($handle);
|
|
|
|
|
|
|
|
public function delete($id);
|
|
|
|
|
|
|
|
public function create($member);
|
|
|
|
|
2024-05-13 21:36:06 +02:00
|
|
|
public function update($member);
|
2024-05-13 20:06:05 +02:00
|
|
|
|
|
|
|
public function auth($request);
|
|
|
|
|
|
|
|
public static function status();
|
|
|
|
}
|