public function InlineTest::getBinaryData in Lockr 7.3
File
- vendor/
symfony/ yaml/ Tests/ InlineTest.php, line 685
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function getBinaryData() {
return [
'enclosed with double quotes' => [
'!!binary "SGVsbG8gd29ybGQ="',
],
'enclosed with single quotes' => [
"!!binary 'SGVsbG8gd29ybGQ='",
],
'containing spaces' => [
'!!binary "SGVs bG8gd 29ybGQ="',
],
];
}