You are here

private static property Escaper::$escaped in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/yaml/Escaper.php \Symfony\Component\Yaml\Escaper::escaped

File

vendor/symfony/yaml/Escaper.php, line 35

Class

Escaper
Escaper encapsulates escaping rules for single and double-quoted YAML strings.

Namespace

Symfony\Component\Yaml

Code

private static $escaped = array(
  '\\\\',
  '\\"',
  '\\\\',
  '\\"',
  '\\0',
  '\\x01',
  '\\x02',
  '\\x03',
  '\\x04',
  '\\x05',
  '\\x06',
  '\\a',
  '\\b',
  '\\t',
  '\\n',
  '\\v',
  '\\f',
  '\\r',
  '\\x0e',
  '\\x0f',
  '\\x10',
  '\\x11',
  '\\x12',
  '\\x13',
  '\\x14',
  '\\x15',
  '\\x16',
  '\\x17',
  '\\x18',
  '\\x19',
  '\\x1a',
  '\\e',
  '\\x1c',
  '\\x1d',
  '\\x1e',
  '\\x1f',
  '\\N',
  '\\_',
  '\\L',
  '\\P',
);