We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 149dd4e commit 10e18c7Copy full SHA for 10e18c7
Escaper.php
@@ -31,13 +31,13 @@ class Escaper
31
"\x08", "\x09", "\x0a", "\x0b", "\x0c", "\x0d", "\x0e", "\x0f",
32
"\x10", "\x11", "\x12", "\x13", "\x14", "\x15", "\x16", "\x17",
33
"\x18", "\x19", "\x1a", "\x1b", "\x1c", "\x1d", "\x1e", "\x1f",
34
- "\xc2\x85", "\xc2\xa0", "\xe2\x80\xa8", "\xe2\x80\xa9");
+ "\xc2\x85", "\xc2\xa0", "\xe2\x80\xa8", "\xe2\x80\xa9", );
35
private static $escaped = array('\\\\', '\\"', '\\\\', '\\"',
36
'\\0', '\\x01', '\\x02', '\\x03', '\\x04', '\\x05', '\\x06', '\\a',
37
'\\b', '\\t', '\\n', '\\v', '\\f', '\\r', '\\x0e', '\\x0f',
38
'\\x10', '\\x11', '\\x12', '\\x13', '\\x14', '\\x15', '\\x16', '\\x17',
39
'\\x18', '\\x19', '\\x1a', '\\e', '\\x1c', '\\x1d', '\\x1e', '\\x1f',
40
- '\\N', '\\_', '\\L', '\\P');
+ '\\N', '\\_', '\\L', '\\P', );
41
42
/**
43
* Determines if a PHP value would require double quoting in YAML.
0 commit comments