Merge pull request #381 from corpsee/master

Humanized yaml application config
This commit is contained in:
Dan Cryer 2014-05-02 08:41:56 +01:00
commit 1af7baff65

View file

@ -195,7 +195,7 @@ class InstallCommand extends Command
protected function writeConfigFile(array $config)
{
$dumper = new \Symfony\Component\Yaml\Dumper();
$yaml = $dumper->dump($config);
$yaml = $dumper->dump($config, 2);
file_put_contents(PHPCI_DIR . 'PHPCI/config.yml', $yaml);
}