Home
last modified time | relevance | path

Searched refs:http_method (Results 1 – 4 of 4) sorted by relevance

/plugin/autotweet/
H A DOAuth.php222 private $http_method; variable in OAuthRequest
229 function __construct($http_method, $http_url, $parameters=NULL) { argument
233 $this->http_method = $http_method;
241 public static function from_request($http_method=NULL, $http_url=NULL, $parameters=NULL) { argument
250 @$http_method or $http_method = $_SERVER['REQUEST_METHOD'];
265 if ($http_method == "POST"
286 return new OAuthRequest($http_method, $http_url, $parameters);
292 …public static function from_consumer_and_token($consumer, $token, $http_method, $http_url, $parame… argument
303 return new OAuthRequest($http_method, $http_url, $parameters);
373 return strtoupper($this->http_method);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DHttpCommandExecutor.php268 $http_method = $http_options['method'];
281 if (is_array($params) && !empty($params) && $http_method !== 'POST') {
286 $http_method,
297 curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, $http_method);
300 if (in_array($http_method, ['POST', 'PUT'], true)) {
310 if ($http_method === 'POST') {
326 $http_method,
/plugin/elasticsearch/vendor/ezimuel/ringphp/
H A DREADME.md25 'http_method' => 'GET',
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php149 if ($request['http_method'] != 'HEAD') {
164 CURLOPT_CUSTOMREQUEST => $request['http_method'],
207 switch ($request['http_method']) {