You are here

public function InlineTest::getBinaryData in Lockr 7.3

File

vendor/symfony/yaml/Tests/InlineTest.php, line 685

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function getBinaryData() {
  return [
    'enclosed with double quotes' => [
      '!!binary "SGVsbG8gd29ybGQ="',
    ],
    'enclosed with single quotes' => [
      "!!binary 'SGVsbG8gd29ybGQ='",
    ],
    'containing spaces' => [
      '!!binary  "SGVs bG8gd 29ybGQ="',
    ],
  ];
}