19 lines
345 B
PHP
19 lines
345 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Interfaces\Restaurant;
|
||
|
|
|
||
|
|
interface RestaurantInterface
|
||
|
|
{
|
||
|
|
public function index($request, int $per_page = 50);
|
||
|
|
|
||
|
|
public function getAll($request);
|
||
|
|
|
||
|
|
public function getById(int $id);
|
||
|
|
|
||
|
|
public function create(array $data);
|
||
|
|
|
||
|
|
public function update(int $id, array $data);
|
||
|
|
|
||
|
|
public function delete(int $id);
|
||
|
|
}
|