You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/RequestMethod.php

13 lines
275 B
PHP

<?php
class RequestMethod {
const GET = 'GET';
const POST = 'POST';
const PUT = 'PUT';
const DELETE = 'DELETE';
const PATCH = 'PATCH';
static function all() {
return array(self::GET, self::POST, self::PUT, self::DELETE, self::PATCH);
}
}