Home
last modified time | relevance | path

Searched refs:body (Results 101 – 125 of 1980) sorted by path

12345678910>>...80

/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
H A DHttpRule.php28 public $body; variable in Google\\Service\\ServiceConsumerManagement\\HttpRule
77 public function setBody($body) argument
79 $this->body = $body;
86 return $this->body;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
H A DHttpRule.php28 public $body; variable in Google\\Service\\ServiceManagement\\HttpRule
77 public function setBody($body) argument
79 $this->body = $body;
86 return $this->body;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
H A DHttpRule.php28 public $body; variable in Google\\Service\\ServiceNetworking\\HttpRule
77 public function setBody($body) argument
79 $this->body = $body;
86 return $this->body;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
H A DHttpRule.php28 public $body; variable in Google\\Service\\ServiceUsage\\HttpRule
77 public function setBody($body) argument
79 $this->body = $body;
86 return $this->body;
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DRevoke.php64 $body = Psr7\Utils::streamFor(http_build_query(array('token' => $token)));
72 $body
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DBatch.php81 $body = '';
112 $body .= sprintf(
124 $body .= "--{$this->boundary}--";
125 $body = trim($body);
129 'Content-Length' => strlen($body),
136 $body
156 $body = (string) $response->getBody();
157 if (!empty($body)) {
158 $body = str_replace("--$boundary--", "--$boundary", $body);
159 $parts = explode("--$boundary", $body);
H A DMediaFileUpload.php300 $body = $this->request->getBody();
301 if ($body) {
304 'content-length' => $body->getSize(),
323 $body = json_decode((string) $this->request->getBody(), true);
324 if (isset($body['error']['errors'])) {
326 foreach ($body['error']['errors'] as $error) {
H A DREST.php125 $body = (string) $response->getBody();
128 throw new GoogleServiceException($body, $code, null, self::getResponseErrors($body));
133 $body = self::decodeBody($response, $request);
136 $json = json_decode($body, true);
170 private static function getResponseErrors($body) argument
172 $json = json_decode($body, true);
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php303 $body = Utils::streamFor(http_build_query(['token' => $token]));
307 ], $body);
H A DOAuth2.php581 $body = (string)$resp->getBody();
586 parse_str($body, $res);
592 if (null === $res = json_decode($body, true)) {
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md170 multipart body. https://github.com/guzzle/guzzle/pull/1218
301 on the body more generic and not specific to `PostBodyInterface`.
429 expectations, and if so, change the actual stream body that is being
472 to decode the response body if it comes over the wire with a
613 * MockAdapter now properly reads a body and emits a `headers` event
633 * Bug: The body of a request can now be set to `"0"`
876 * Setting a response on a request will write to the custom request body from the response body if o…
977 * Bug fix: Redirects now use a target response body rather than a temporary response body
1029 * Bug: Response body can now be a string containing "0"
1150 * DELETE requests can now send an entity body
[all …]
H A DUPGRADING.md209 expectations, and if so, change the actual stream body that is being
382 #### Requests with a body
386 separation between requests that contain a body and requests that do not
397 to control the format of a POST body. Requests that are created using a
399 a `GuzzleHttp\Post\PostBody` body if the body was passed as an array or if
400 the method is POST and no body is provided.
446 `GuzzleHttp\Message\ResponseInterface` object that contains a body stream
459 // Read some data off of the stream in the response body
483 `GuzzleHttp\Stream\StreamInterface`. Creating a new body for a request no
1028 "location": "body",
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DClient.php151 $body = isset($options['body']) ? $options['body'] : null;
155 if (is_array($body)) {
158 $request = new Psr7\Request($method, $uri, $headers, $body, $version);
H A DPrepareBodyMiddleware.php104 $body = $request->getBody();
105 $size = $body->getSize();
107 if ($size === null || $size >= (int) $expect || !$body->isSeekable()) {
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlFactory.php112 $body = $easy->response->getBody();
113 if ($body->isSeekable()) {
114 $body->rewind();
235 $body = $easy->request->getBody();
236 $size = $body->getSize();
281 $body = $request->getBody();
282 if ($body->isSeekable()) {
283 $body->rewind();
286 return $body->read($length);
516 if ($body->tell() > 0) {
[all …]
H A DStreamHandler.php393 $body = (string) $request->getBody();
395 if (!empty($body)) {
396 $context['http']['content'] = $body;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md104 - Check body size when getting the message summary
111 - Get the summary of a body only if it is readable
H A DREADME.md60 entity body fails due to needing to rewind the stream (for example, resulting
174 // Limit the size of the body to 1024 bytes and start reading from byte 2048
327 Get a short summary of the message body.
336 Attempts to rewind a message body and throws an exception on failure.
338 The body of the message will only be rewound if a call to `tell()`
350 array values, and a "body" key containing the body of the message.
460 - body: (mixed) Sets the given body.
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DMessage.php60 $body = $message->getBody();
62 if (!$body->isSeekable() || !$body->isReadable()) {
66 $size = $body->getSize();
72 $summary = $body->read($truncateAt);
73 $body->rewind();
100 $body = $message->getBody();
102 if ($body->tell()) {
103 $body->rewind();
132 list($rawHeaders, $body) = $messageParts;
169 'body' => $body,
H A DMessageTrait.php127 public function withBody(StreamInterface $body) argument
129 if ($body === $this->stream) {
134 $new->stream = $body;
H A DMultipartStream.php99 list($body, $headers) = $this->createElement(
107 $stream->addStream($body);
H A DRequest.php30 * @param string|resource|StreamInterface|null $body Request body
37 $body = null, argument
54 if ($body !== '' && $body !== null) {
55 $this->stream = Utils::streamFor($body);
H A DResponse.php86 * @param string|resource|StreamInterface|null $body Response body
93 $body = null, argument
103 if ($body !== '' && $body !== null) {
104 $this->stream = Utils::streamFor($body);
H A DServerRequest.php61 * @param string|resource|StreamInterface|null $body Request body
69 $body = null, argument
75 parent::__construct($method, $uri, $headers, $body, $version);
175 $body = new CachingStream(new LazyOpenStream('php://input', 'r+'));
178 $serverRequest = new ServerRequest($method, $uri, $headers, $body, $protocol, $_SERVER);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DMailHandler.php81 protected function isHtmlBody(string $body): bool argument
83 return ($body[0] ?? null) === '<';

12345678910>>...80