propel-bundle/DataFixtures/Dumper/YamlDataDumper.php
2016-02-11 19:31:44 +01:00

36 lines
744 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\Bundle\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,
$inline = 3,
$indent = 4,
$exceptionOnInvalidType = false,
$objectSupport = true
);
}
}