| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace PHPDish\DailySongPlugin\DependencyInjection; |
||
| 6 | |||
| 7 | use Symfony\Component\Config\Definition\Builder\TreeBuilder; |
||
| 8 | use Symfony\Component\Config\Definition\ConfigurationInterface; |
||
| 9 | |||
| 10 | final class Configuration implements ConfigurationInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | public function getConfigTreeBuilder(): TreeBuilder |
||
| 16 | { |
||
| 17 | $treeBuilder = new TreeBuilder(); |
||
| 18 | $rootNode = $treeBuilder->root('phpdish_daily_song'); |
||
|
0 ignored issues
–
show
Unused Code
introduced
by
Loading history...
|
|||
| 19 | |||
| 20 | return $treeBuilder; |
||
| 21 | } |
||
| 22 | } |
||
| 23 |