for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Disclaimer: This source code is protected by copyright law and by
* international conventions.
*
* Any reproduction or partial or total distribution of the source code, by any
* means whatsoever, is strictly forbidden.
* Anyone not complying with these provisions will be guilty of the offense of
* infringement and the penal sanctions provided for by law.
* (c) 2019 All rights reserved.
*/
namespace WBW\Bundle\JQuery\QueryBuilderBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
use WBW\Bundle\CoreBundle\DependencyInjection\ConfigurationHelper;
/**
* Configuration.
* @author webeweb <https://github.com/webeweb/>
* @package WBW\Bundle\JQuery\QueryBuilderBundle\DependencyInjection
class Configuration implements ConfigurationInterface {
* {@inheritDoc}
public function getConfigTreeBuilder() {
$treeBuilder = new TreeBuilder(WBWJQueryQueryBuilderExtension::EXTENSION_ALIAS);
$rootNode = ConfigurationHelper::getRootNode($treeBuilder, WBWJQueryQueryBuilderExtension::EXTENSION_ALIAS);
return $treeBuilder;
}