39 lines
		
	
	
		
			964 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			964 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Knp\Bundle\GaufretteBundle\DependencyInjection;
 | 
						|
 | 
						|
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
 | 
						|
use Symfony\Component\Config\Definition\ConfigurationInterface;
 | 
						|
 | 
						|
/**
 | 
						|
 * Factory configuration for the Gaufrette DIC extension
 | 
						|
 *
 | 
						|
 * @author Antoine Hérault <antoine.herault@gmail.com>
 | 
						|
 */
 | 
						|
class FactoryConfiguration implements ConfigurationInterface
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Generates the configuration tree builder
 | 
						|
     *
 | 
						|
     * @return TreeBuilder
 | 
						|
     */
 | 
						|
    public function getConfigTreeBuilder()
 | 
						|
    {
 | 
						|
        $treeBuilder = new TreeBuilder();
 | 
						|
 | 
						|
        $treeBuilder
 | 
						|
            ->root('knp_gaufrette')
 | 
						|
                ->ignoreExtraKeys()
 | 
						|
                ->fixXmlConfig('factory', 'factories')
 | 
						|
                ->children()
 | 
						|
                    ->arrayNode('factories')
 | 
						|
                        ->prototype('scalar')->end()
 | 
						|
                    ->end()
 | 
						|
                ->end()
 | 
						|
            ->end()
 | 
						|
        ;
 | 
						|
 | 
						|
        return $treeBuilder;
 | 
						|
    }
 | 
						|
}
 |