1 | <?php |
||
19 | class Configuration implements ConfigurationInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $alias; |
||
25 | |||
26 | /** |
||
27 | * Configuration constructor. |
||
28 | * |
||
29 | * @param string $alias |
||
30 | */ |
||
31 | public function __construct(string $alias) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function getConfigTreeBuilder() |
||
46 | } |
||
47 |