migrate to gtea from bistbucket
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Interfaces\Package;
|
||||
|
||||
interface PackageInterface
|
||||
{
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user