Home
last modified time | relevance | path

Searched refs:Utils (Results 26 – 50 of 163) sorted by path

1234567

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md26 $a = Psr7\Utils::streamFor('abc, ');
27 $b = Psr7\Utils::streamFor('123.');
92 $stream = Psr7\Utils::streamFor();
115 $stream = Psr7\Utils::streamFor('hi');
438 ## `GuzzleHttp\Psr7\Utils::hash`
466 ## `GuzzleHttp\Psr7\Utils::readLine`
531 ## `GuzzleHttp\Psr7\Utils::uriFor`
563 | `uri_for` | `Utils::uriFor` |
569 | `try_fopen` | `Utils::tryFopen` |
572 | `hash` | `Utils::hash` |
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DAppendStream.php67 return Utils::copyToString($this);
H A DCachingStream.php34 $this->stream = $target ?: new Stream(Utils::tryFopen('php://temp', 'r+'));
143 Utils::copyToStream($this, $target);
H A DLazyOpenStream.php40 return Utils::streamFor(Utils::tryFopen($this->filename, $this->mode));
H A DMessageTrait.php121 $this->stream = Utils::streamFor('');
H A DMultipartStream.php77 $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n"));
90 $element['contents'] = Utils::streamFor($element['contents']);
106 $stream->addStream(Utils::streamFor($this->getHeaders($headers)));
108 $stream->addStream(Utils::streamFor("\r\n"));
H A DPumpStream.php57 return Utils::copyToString($this);
H A DRequest.php55 $this->stream = Utils::streamFor($body);
H A DResponse.php104 $this->stream = Utils::streamFor($body);
H A DStreamDecoratorTrait.php57 return Utils::copyToString($this);
H A DUploadedFile.php273 Utils::copyToStream(
H A DUtils.php10 final class Utils class
341 return Utils::streamFor((string) $resource, $options);
H A Dfunctions.php41 return Utils::uriFor($uri);
84 return Utils::streamFor($resource, $options);
143 return Utils::modifyRequest($request, $changes);
180 return Utils::tryFopen($filename, $mode);
199 return Utils::copyToString($stream, $maxLen);
217 return Utils::copyToStream($source, $dest, $maxLen);
238 return Utils::hash($stream, $algo, $rawOutput);
253 return Utils::readLine($stream, $maxLength);
421 return Utils::caselessRemove($keys, $data);
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md41 …* Fixed Utils::getClass handling of anonymous classes not being fully compatible with PHP 8 (#1563)
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DErrorHandler.php193 …sprintf('Uncaught Exception %s: "%s" at %s line %s', Utils::getClass($e), $e->getMessage(), $e->ge…
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DFluentdFormatter.php14 use Monolog\Utils; alias
76 return Utils::jsonEncode([$tag, $record['datetime']->getTimestamp(), $message]);
H A DGelfMessageFormatter.php16 use Monolog\Utils; alias
113 $message->setShortMessage(Utils::substr($record['message'], 0, $this->maxLength));
132 …$message->setAdditional($this->extraPrefix . $key, Utils::substr((string) $val, 0, $this->maxLengt…
143 …$message->setAdditional($this->contextPrefix . $key, Utils::substr((string) $val, 0, $this->maxLen…
H A DHtmlFormatter.php15 use Monolog\Utils; alias
140 return Utils::jsonEncode($data, JSON_PRETTY_PRINT | Utils::DEFAULT_JSON_FLAGS, true);
H A DLineFormatter.php14 use Monolog\Utils; alias
122 …untimeException('Failed to run preg_replace: ' . $pcreErrorCode . ' / ' . Utils::pcreLastErrorMess…
191 $str = '[object] (' . Utils::getClass($e) . '(code: ' . $e->getCode();
H A DMongoDBFormatter.php16 use Monolog\Utils; alias
104 $objectVars['class'] = Utils::getClass($value);
115 'class' => Utils::getClass($exception),
H A DNormalizerFormatter.php15 use Monolog\Utils; alias
35 private $jsonEncodeOptions = Utils::DEFAULT_JSON_FLAGS;
186 return [Utils::getClass($data) => $value];
206 'class' => Utils::getClass($e),
253 return Utils::jsonEncode($data, $this->jsonEncodeOptions, $ignoreErrors);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DBrowserConsoleHandler.php16 use Monolog\Utils; alias
209 …$format = Utils::substr($format, 0, $pos) . '%c' . $match[1][0] . '%c' . Utils::substr($format, $p…
239 …eption('Failed to run preg_replace_callback: ' . $pcreErrorCode . ' / ' . Utils::pcreLastErrorMess…
H A DChromePHPHandler.php17 use Monolog\Utils; alias
151 … $json = Utils::jsonEncode(self::$json, Utils::DEFAULT_JSON_FLAGS & ~JSON_UNESCAPED_UNICODE, true);
166 $json = Utils::jsonEncode(self::$json, null, true);
H A DCubeHandler.php15 use Monolog\Utils; alias
H A DErrorLogHandler.php17 use Monolog\Utils; alias
85 …ption('Failed to preg_split formatted string: ' . $pcreErrorCode . ' / '. Utils::pcreLastErrorMess…

1234567