15 lines
222 B
PHP
15 lines
222 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace App\Interfaces;
|
||
|
|
||
|
|
||
|
|
||
|
abstract class APIInterface
|
||
|
{
|
||
|
abstract function get($path, $auth = null);
|
||
|
abstract function post($path, $data, $auth = null);
|
||
|
abstract function delete($path, $auth = null);
|
||
|
|
||
|
}
|