migrate to gtea from bistbucket
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Authentication\Interfaces;
|
||||
|
||||
interface RoleInterface
|
||||
{
|
||||
public function index($request, int $perPage = 50);
|
||||
|
||||
public function getById(int $id);
|
||||
|
||||
public function create(array $data);
|
||||
|
||||
public function update(int $id, array $data);
|
||||
|
||||
public function delete(int $id);
|
||||
}
|
||||
Reference in New Issue
Block a user