Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DChromePHPHandler.php151 … $json = Utils::jsonEncode(self::$json, Utils::DEFAULT_JSON_FLAGS & ~JSON_UNESCAPED_UNICODE, true);
166 $json = Utils::jsonEncode(self::$json, null, true);
H A DIFTTTHandler.php61 $postString = Utils::jsonEncode($postData);
H A DFlowdockHandler.php116 return Utils::jsonEncode($record['formatted']['flowdock']);
H A DSlackWebhookHandler.php96 $postString = Utils::jsonEncode($postData);
H A DNewRelicHandler.php188 newrelic_add_custom_parameter($key, Utils::jsonEncode($value, null, true));
H A DSlackHandler.php139 $dataArray['attachments'] = Utils::jsonEncode($dataArray['attachments']);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DFluentdFormatter.php76 return Utils::jsonEncode([$tag, $record['datetime']->getTimestamp(), $message]);
H A DHtmlFormatter.php140 return Utils::jsonEncode($data, JSON_PRETTY_PRINT | Utils::DEFAULT_JSON_FLAGS, true);
H A DNormalizerFormatter.php253 return Utils::jsonEncode($data, $this->jsonEncodeOptions, $ignoreErrors);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/Slack/
H A DSlackRecord.php235 ? Utils::jsonEncode($normalized, JSON_PRETTY_PRINT|Utils::DEFAULT_JSON_FLAGS)
236 : Utils::jsonEncode($normalized, Utils::DEFAULT_JSON_FLAGS);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DPsrLogMessageProcessor.php72 $replacements[$placeholder] = 'array'.Utils::jsonEncode($val, null, true);
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A 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/
H A DUtils.php79 …public static function jsonEncode($data, ?int $encodeFlags = null, bool $ignoreErrors = false): st… function in Monolog\\Utils