| Total Complexity | 2 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 8 | class Configuration implements ConfigurationInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $alias; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $alias |
||
| 17 | */ |
||
| 18 | public function __construct(string $alias) |
||
| 19 | { |
||
| 20 | $this->alias = $alias; |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @inheritdoc |
||
| 25 | */ |
||
| 26 | public function getConfigTreeBuilder(): TreeBuilder |
||
| 55 | } |
||
| 56 | } |
||
| 57 |