for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Gerard van Helden <[email protected]>
* @copyright Zicht Online <http://zicht.nl>
*/
namespace Zicht\Bundle\FrameworkExtraBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
* Page bundle configuration
class Configuration implements ConfigurationInterface
{
* @{inheritDoc}
public function getConfigTreeBuilder()
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('zicht_framework_extra');
$rootNode
->children()
->scalarNode('requirejs')->end()
->scalarNode('uglify')->end()
->booleanNode('uglify_debug')->end()
->arrayNode('embed_helper')
->booleanNode('mark_exceptions_as_errors')->defaultValue(false)->end()
->end()
->booleanNode('disable_schema-update')->defaultTrue()
->end();
return $treeBuilder;
}