public function InlineTest::testParseMapReferenceInSequence in Database Sanitize 7
File
- vendor/
symfony/ yaml/ Tests/ InlineTest.php, line 261
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testParseMapReferenceInSequence() {
$foo = array(
'a' => 'Steve',
'b' => 'Clark',
'c' => 'Brian',
);
$this
->assertSame(array(
$foo,
), Inline::parse('[*foo]', 0, array(
'foo' => $foo,
)));
}