From d39ff71484425081ae91e3a1859c614cd80295cb Mon Sep 17 00:00:00 2001 From: Dmitry Khomutov Date: Tue, 29 Apr 2014 23:22:04 +0700 Subject: [PATCH] Humanised yaml application config --- PHPCI/Command/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Command/InstallCommand.php b/PHPCI/Command/InstallCommand.php index e6432103..aac34dca 100644 --- a/PHPCI/Command/InstallCommand.php +++ b/PHPCI/Command/InstallCommand.php @@ -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); }