Home
last modified time | relevance | path

Searched refs:httpStatusCode (Results 1 – 7 of 7) sorted by relevance

/plugin/oauth/
H A DHttpTokenResponseException.php12 protected $httpStatusCode = 0; variable in dokuwiki\\plugin\\oauth\\HttpTokenResponseException
18 * @param int $httpStatusCode
26 $httpStatusCode = 0, argument
33 $this->httpStatusCode = $httpStatusCode;
45 return $this->httpStatusCode;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
DRepositoryError.php29 public $httpStatusCode; variable in Google\\Service\\CloudSearch\\RepositoryError
52 public function setHttpStatusCode($httpStatusCode) argument
54 $this->httpStatusCode = $httpStatusCode;
61 return $this->httpStatusCode;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/
DPersonResponse.php25 public $httpStatusCode; variable in Google\\Service\\PeopleService\\PersonResponse
38 public function setHttpStatusCode($httpStatusCode) argument
40 $this->httpStatusCode = $httpStatusCode;
47 return $this->httpStatusCode;
/plugin/authfacebook/lib/Http/
DGraphRawResponse.php53 … * @param int $httpStatusCode The HTTP response code (if sending headers as parsed array).
55 public function __construct($headers, $body, $httpStatusCode = null) argument
57 if (is_numeric($httpStatusCode)) {
58 $this->httpResponseCode = (int)$httpStatusCode;
/plugin/authfacebook/lib/
DFacebookResponse.php40 protected $httpStatusCode; variable in Facebook\\FacebookResponse
72 * @param int|null $httpStatusCode
75 …public function __construct(FacebookRequest $request, $body = null, $httpStatusCode = null, array … argument
79 $this->httpStatusCode = $httpStatusCode;
122 return $this->httpStatusCode;
DFacebookBatchResponse.php59 $httpStatusCode = $response->getHttpStatusCode();
61 parent::__construct($request, $body, $httpStatusCode, $headers);
/plugin/authfacebook/lib/HttpClients/
DFacebookGuzzleHttpClient.php75 $httpStatusCode = $rawResponse->getStatusCode();
77 return new GraphRawResponse($rawHeaders, $rawBody, $httpStatusCode);