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

10 lines
236 B
PHP

<?php
class RequestMethod {
const GET = 'GET';
const POST = 'POST';
const PUT = 'PUT';
const DELETE = 'DELETE';
const PATCH = 'PATCH';
const ALL = [self::GET, self::POST, self::PUT, self::DELETE, self::PATCH];
}