public function ParserTest::testMultiLineQuotedStringWithTrailingBackslash in Database Sanitize 7
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 1635
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testMultiLineQuotedStringWithTrailingBackslash() {
$yaml = <<<YAML
foobar:
"foo\\
bar"
YAML;
$this
->assertSame(array(
'foobar' => 'foobar',
), $this->parser
->parse($yaml));
}