17 lines
307 B
PHP
17 lines
307 B
PHP
<?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);
|
|
}
|