Skip to content

Instantly share code, notes, and snippets.

@baldurrensch
Created December 3, 2012 16:28
Show Gist options
  • Select an option

  • Save baldurrensch/4196096 to your computer and use it in GitHub Desktop.

Select an option

Save baldurrensch/4196096 to your computer and use it in GitHub Desktop.
<?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