From ce8399945a37ca0f1410d034d6fd27ed272f535b Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 8 Jun 2021 11:34:32 +0200 Subject: [PATCH] Add new configuration property. --- .../ChillMainBundle/DependencyInjection/Configuration.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Bundle/ChillMainBundle/DependencyInjection/Configuration.php b/src/Bundle/ChillMainBundle/DependencyInjection/Configuration.php index 9236c8a50..8f70d2604 100644 --- a/src/Bundle/ChillMainBundle/DependencyInjection/Configuration.php +++ b/src/Bundle/ChillMainBundle/DependencyInjection/Configuration.php @@ -41,6 +41,10 @@ class Configuration implements ConfigurationInterface $rootNode ->children() + ->scalarNode('phonenumber_default_country_code') + ->cannotBeEmpty() + ->defaultValue('+32') + ->end() // end of scalar 'phonenumber_default_country_code' ->scalarNode('installation_name') ->cannotBeEmpty() ->defaultValue('Chill')