Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
vendor
/
cocur
/
slugify
/
src
/
Bridge
/
Symfony
:
Configuration.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /* * This file is part of the cocur/slugify package. * * (c) Enrico Stahn <enrico.stahn@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cocur\Slugify\Bridge\Symfony; use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; class Configuration implements ConfigurationInterface { /** * {@inheritdoc} */ public function getConfigTreeBuilder() { $treeBuilder = new TreeBuilder('cocur_slugify'); // Keep compatibility with symfony/config < 4.2 if (\method_exists($treeBuilder, 'getRootNode')) { $rootNode = $treeBuilder->getRootNode(); } else { $rootNode = $treeBuilder->root('cocur_slugify'); } $rootNode ->children() ->booleanNode('lowercase')->end() ->booleanNode('lowercase_after_regexp')->end() ->booleanNode('trim')->end() ->booleanNode('strip_tags')->end() ->scalarNode('separator')->end() ->scalarNode('regexp')->end() ->arrayNode('rulesets')->prototype('scalar')->end() ->end(); return $treeBuilder; } }