Skip to content

Instantly share code, notes, and snippets.

@dbellettini
Created December 12, 2013 14:44
Show Gist options
  • Save dbellettini/7929017 to your computer and use it in GitHub Desktop.
Save dbellettini/7929017 to your computer and use it in GitHub Desktop.
CavejaToshBundle configuration
<?php
namespace Caveja\Bundle\ToshlBundle\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('caveja_toshl');
$rootNode
->children()
->arrayNode('api')
->children()
->scalarNode('url')
->cannotBeEmpty()
->defaultValue('https://api.toshl.com/')
->end()
->end()
->end()
;
return $treeBuilder;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment