Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A 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/
H A 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/
H A 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/
H A 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;
H A DFacebookBatchResponse.php59 $httpStatusCode = $response->getHttpStatusCode();
61 parent::__construct($request, $body, $httpStatusCode, $headers);
/plugin/authfacebook/lib/HttpClients/
H A DFacebookGuzzleHttpClient.php75 $httpStatusCode = $rawResponse->getStatusCode();
77 return new GraphRawResponse($rawHeaders, $rawBody, $httpStatusCode);