Home
last modified time | relevance | path

Searched refs:jsonEncode (Results 1 – 18 of 18) sorted by relevance

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
DChromePHPHandler.php151 … $json = Utils::jsonEncode(self::$json, Utils::DEFAULT_JSON_FLAGS & ~JSON_UNESCAPED_UNICODE, true);
166 $json = Utils::jsonEncode(self::$json, null, true);
DIFTTTHandler.php61 $postString = Utils::jsonEncode($postData);
DFlowdockHandler.php116 return Utils::jsonEncode($record['formatted']['flowdock']);
DSlackWebhookHandler.php96 $postString = Utils::jsonEncode($postData);
DNewRelicHandler.php188 newrelic_add_custom_parameter($key, Utils::jsonEncode($value, null, true));
DSlackHandler.php139 $dataArray['attachments'] = Utils::jsonEncode($dataArray['attachments']);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
DFluentdFormatter.php76 return Utils::jsonEncode([$tag, $record['datetime']->getTimestamp(), $message]);
DHtmlFormatter.php140 return Utils::jsonEncode($data, JSON_PRETTY_PRINT | Utils::DEFAULT_JSON_FLAGS, true);
DNormalizerFormatter.php253 return Utils::jsonEncode($data, $this->jsonEncodeOptions, $ignoreErrors);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/Slack/
DSlackRecord.php235 ? Utils::jsonEncode($normalized, JSON_PRETTY_PRINT|Utils::DEFAULT_JSON_FLAGS)
236 : Utils::jsonEncode($normalized, Utils::DEFAULT_JSON_FLAGS);
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Cookie/
DFileCookieJar.php67 $jsonStr = Utils::jsonEncode($json);
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/
Dfunctions.php166 return Utils::jsonEncode($value, $options, $depth);
DUtils.php294 public static function jsonEncode($value, int $options = 0, int $depth = 512): string function in GuzzleHttp\\Utils
DClient.php377 $options['body'] = Utils::jsonEncode($options['json']);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
DPsrLogMessageProcessor.php72 $replacements[$placeholder] = 'array'.Utils::jsonEncode($val, null, true);
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
DJWT.php199 $segments[] = static::urlsafeB64Encode((string) static::jsonEncode($header));
200 $segments[] = static::urlsafeB64Encode((string) static::jsonEncode($payload));
359 public static function jsonEncode(array $input): string function in Firebase\\JWT\\JWT
/plugin/combo/ComboStrap/
H A DMetadataFrontmatterStore.php433 $jsonEncode = self::toFrontmatterJsonString($jsonArray);
437 $jsonEncode
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
DUtils.php79 …public static function jsonEncode($data, ?int $encodeFlags = null, bool $ignoreErrors = false): st… function in Monolog\\Utils