| Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | no | BC Break report? | no | RFC? | no | Symfony version | 3.3.0 --- ```php <?php require __DIR__.'/vendor/autoload.php'; $yaml = <<<EOYAML hello foo: bar EOYAML; dump(Symfony\Component\Yaml\Yaml::parse($yaml)); ``` --- output: ``` "hello foo: bar" ```