for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rottenwood\UserBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/** {@inheritDoc} */
class Configuration implements ConfigurationInterface
{
/** {@inheritdoc} */
public function getConfigTreeBuilder()
$treeBuilder = new TreeBuilder();
$treeBuilder->root('rottenwood_user');
// Here you should define the parameters that are allowed to
// configure your bundle. See the documentation linked above for
// more information on that topic.
return $treeBuilder;
}