X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fconfig%2FTests%2FFixtures%2FConfiguration%2FExampleConfiguration.php;fp=vendor%2Fsymfony%2Fconfig%2FTests%2FFixtures%2FConfiguration%2FExampleConfiguration.php;h=d44b67cc1997ffa4983de467a31d2fb177c2ab8f;hp=3a34f906a367aa77d72871007e2ff857eaa2ad01;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/symfony/config/Tests/Fixtures/Configuration/ExampleConfiguration.php b/vendor/symfony/config/Tests/Fixtures/Configuration/ExampleConfiguration.php index 3a34f906a..d44b67cc1 100644 --- a/vendor/symfony/config/Tests/Fixtures/Configuration/ExampleConfiguration.php +++ b/vendor/symfony/config/Tests/Fixtures/Configuration/ExampleConfiguration.php @@ -35,6 +35,8 @@ class ExampleConfiguration implements ConfigurationInterface ->scalarNode('scalar_array_empty')->defaultValue(array())->end() ->scalarNode('scalar_array_defaults')->defaultValue(array('elem1', 'elem2'))->end() ->scalarNode('scalar_required')->isRequired()->end() + ->scalarNode('scalar_deprecated')->setDeprecated()->end() + ->scalarNode('scalar_deprecated_with_message')->setDeprecated('Deprecation custom message for "%node%" at "%path%"')->end() ->scalarNode('node_with_a_looong_name')->end() ->enumNode('enum_with_default')->values(array('this', 'that'))->defaultValue('this')->end() ->enumNode('enum')->values(array('this', 'that'))->end()