From 0893600f0e115daa0cb7e2836c860f91b81d8132 Mon Sep 17 00:00:00 2001 From: Dennis Benkert Date: Thu, 28 Jan 2010 21:56:23 +0100 Subject: [PATCH] [YAML] fixed coding standards --- src/Symfony/Components/YAML/Parser.php | 13 ++++++------- src/Symfony/Components/YAML/YAML.php | 3 +-- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/src/Symfony/Components/YAML/Parser.php b/src/Symfony/Components/YAML/Parser.php index fd7f701e24..aeb1f94a07 100644 --- a/src/Symfony/Components/YAML/Parser.php +++ b/src/Symfony/Components/YAML/Parser.php @@ -19,13 +19,12 @@ namespace Symfony\Components\YAML; */ class Parser { - protected - $value = '', - $offset = 0, - $lines = array(), - $currentLineNb = -1, - $currentLine = '', - $refs = array(); + protected $value = ''; + protected $offset = 0; + protected $lines = array(); + protected $currentLineNb = -1; + protected $currentLine = ''; + protected $refs = array(); /** * Constructor diff --git a/src/Symfony/Components/YAML/YAML.php b/src/Symfony/Components/YAML/YAML.php index 00d812f748..58d5a3b30f 100644 --- a/src/Symfony/Components/YAML/YAML.php +++ b/src/Symfony/Components/YAML/YAML.php @@ -19,8 +19,7 @@ namespace Symfony\Components\YAML; */ class YAML { - static protected - $spec = '1.2'; + static protected $spec = '1.2'; /** * Sets the YAML specification version to use.