23 lines
363 B
PHP
23 lines
363 B
PHP
|
<?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);
|
||
|
|
||
|
public function update($id);
|
||
|
|
||
|
public function auth($request);
|
||
|
|
||
|
public static function status();
|
||
|
}
|