![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/medad.corals.io/vendor/fig/http-message-util/src/ |
<?php namespace Fig\Http\Message; /** * Defines constants for common HTTP request methods. * * Usage: * * <code> * class RequestFactory implements RequestMethodInterface * { * public static function factory( * $uri = '/', * $method = self::METHOD_GET, * $data = [] * ) { * } * } * </code> */ interface RequestMethodInterface { const METHOD_HEAD = 'HEAD'; const METHOD_GET = 'GET'; const METHOD_POST = 'POST'; const METHOD_PUT = 'PUT'; const METHOD_PATCH = 'PATCH'; const METHOD_DELETE = 'DELETE'; const METHOD_PURGE = 'PURGE'; const METHOD_OPTIONS = 'OPTIONS'; const METHOD_TRACE = 'TRACE'; const METHOD_CONNECT = 'CONNECT'; }