pos-gis/app/Interfaces/APIInterface.php

15 lines
222 B
PHP
Raw Normal View History

2024-10-07 06:13:42 +00:00
<?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);
}