Escaper
Escaper
class Escaper
Escaper encapsulates escaping rules for single and double-quoted YAML strings.
Constants
REGEX_CHARACTER_TO_ESCAPE |
Methods
static bool | requiresDoubleQuoting(string $value) Determines if a PHP value would require double quoting in YAML. | |
static string | escapeWithDoubleQuotes(string $value) Escapes and surrounds a PHP value with double quotes. | |
static bool | requiresSingleQuoting(string $value) Determines if a PHP value would require single quoting in YAML. | |
static string
|