![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/vendor/cocur/slugify/src/Bridge/Symfony/ |
<?php /* * This file is part of the cocur/slugify package. * * (c) Enrico Stahn <[email protected]> * * 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; } }