From decd8a318d9a9ce17ba6013ab4c8c45e98c32980 Mon Sep 17 00:00:00 2001 From: Lea Haensenberger Date: Fri, 1 Feb 2013 14:55:59 +0100 Subject: [PATCH] fixing CS problems --- DependencyInjection/Configuration.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 79f1238..1d5de66 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -326,7 +326,8 @@ class Configuration * @param array $nestings The nestings for the current field level * @param string $property the name of the nested property ('fields' or 'properties') */ - protected function addNestedFieldConfig($node, $nestings, $property){ + protected function addNestedFieldConfig($node, $nestings, $property) + { $childrenNode = $node ->arrayNode($property) ->useAttributeAsKey('name') @@ -381,7 +382,8 @@ class Configuration * @param array $nestings The nestings array * @param string $property The nested property name ('fields' or 'properties') */ - protected function addPropertyNesting($field, &$nestings, $property){ + protected function addPropertyNesting($field, &$nestings, $property) + { if (!isset($nestings[$property])) { $nestings[$property] = array(); }