Created
December 3, 2012 16:28
-
-
Save baldurrensch/4196096 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Hautelook\ApiBundle\DependencyInjection; | |
| use Symfony\Component\Config\Definition\Builder\TreeBuilder; | |
| use Symfony\Component\Config\Definition\ConfigurationInterface; | |
| /** | |
| * This is the class that validates and merges configuration from your app/config files | |
| * | |
| * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class} | |
| */ | |
| class Configuration implements ConfigurationInterface | |
| { | |
| /** | |
| * {@inheritDoc} | |
| */ | |
| public function getConfigTreeBuilder() | |
| { | |
| $treeBuilder = new TreeBuilder(); | |
| $rootNode = $treeBuilder->root('hautelook_api'); | |
| $rootNode | |
| ->children() | |
| ->arrayNode('parameters_name') | |
| ->prototype('scalar') | |
| ->end(); | |
| return $treeBuilder; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment