From 3f0e5d3c3e97d6ae05553b9543846f8f065aac72 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 17 Jan 2013 17:53:40 +0100 Subject: [PATCH] [Yaml] fixed typo --- Yaml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Yaml.php b/Yaml.php index ca24cffb..48a0191d 100644 --- a/Yaml.php +++ b/Yaml.php @@ -145,7 +145,7 @@ public static function parse($input, $exceptionOnInvalidType = false, $objectSup * * @api */ - public static function dump($array, $inline = 2, $indent = 4, $exceptionOnInvalidType = false, $objectSupport = false) + public static function dump($array, $inline = 2, $indent = 2, $exceptionOnInvalidType = false, $objectSupport = false) { $yaml = new Dumper(); $yaml->setIndentation($indent);