Bravo3\Orm\Mappers\Yaml\YamlMapWriter::writeYaml PHP Method

writeYaml() private method

Write YAML data to a file, overwriting its contents
private writeYaml ( string $fn, array $data )
$fn string
$data array
    private function writeYaml($fn, array $data)
    {
        $yaml = new Yaml();
        file_put_contents($fn, $yaml->dump($data, $this->getInlineLevel(), $this->getIndentSpaces()));
        return $this;
    }