You are here

public function InlineTest::getBinaryData in Database Sanitize 7

File

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

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

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