public function InlineTest::getTestsForNullValues in Database Sanitize 7
File
- vendor/
symfony/ yaml/ Tests/ InlineTest.php, line 755
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function getTestsForNullValues() {
return array(
'null before closing curly brace' => array(
'{foo:}',
array(
'foo' => null,
),
),
'null before comma' => array(
'{foo:, bar: baz}',
array(
'foo' => null,
'bar' => 'baz',
),
),
);
}