migrate to gtea from bistbucket
This commit is contained in:
18
public/restaurant/resources/stubs/interface.stub
Normal file
18
public/restaurant/resources/stubs/interface.stub
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace DummyNamespace;
|
||||
|
||||
interface DummyClass
|
||||
{
|
||||
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