propel-bundle/DataFixtures/Dumper/YamlDataDumper.php
2011-09-07 11:07:48 +02:00

30 lines
588 B
PHP

<?php
/**
* This file is part of the PropelBundle package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
namespace Propel\PropelBundle\DataFixtures\Dumper;
use Symfony\Component\Yaml\Yaml;
/**
* YAML fixtures dumper.
*
* @author William Durand <william.durand1@gmail.com>
*/
class YamlDataDumper extends AbstractDataDumper
{
/**
* {@inheritdoc}
*/
protected function transformArrayToData($data)
{
return Yaml::dump($data, 3);
}
}