| Total Complexity | 3 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | class Configuration implements ConfigurationInterface |
||
| 29 | { |
||
| 30 | /** @var string */ |
||
| 31 | private $root; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Configuration constructor. |
||
| 35 | * |
||
| 36 | * @param string $root |
||
| 37 | */ |
||
| 38 | public function __construct(string $root) |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function getConfigTreeBuilder(): TreeBuilder |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Get configuration root. |
||
| 60 | * |
||
| 61 | * @return string |
||
| 62 | */ |
||
| 63 | public function getRoot(): string |
||
| 68 |