13 lines
175 B
PHP
13 lines
175 B
PHP
<?php
|
|
|
|
namespace Unirest;
|
|
|
|
interface Method
|
|
{
|
|
const DELETE = 'DELETE';
|
|
const GET = 'GET';
|
|
const PATCH = 'PATCH';
|
|
const POST = 'POST';
|
|
const PUT = 'PUT';
|
|
}
|