1 | <?php |
||
20 | class Config implements ConfigurationInterface { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $path; |
||
25 | |||
26 | /** |
||
27 | * @var array |
||
28 | */ |
||
29 | protected $values; |
||
30 | |||
31 | /** |
||
32 | * Build the configuration from nested arrays using a processor. |
||
33 | * |
||
34 | * @param string $path |
||
35 | */ |
||
36 | 9 | public function __construct($path, array $values) { |
|
45 | |||
46 | /** |
||
47 | * Definition of configuration for symfony. |
||
48 | * |
||
49 | * @inheritdocs |
||
50 | */ |
||
51 | 9 | public function getConfigTreeBuilder() { |
|
84 | |||
85 | /** |
||
86 | * @return string |
||
87 | */ |
||
88 | 4 | public function path() { |
|
91 | |||
92 | 9 | protected function maybe_prepend_path($path) { |
|
99 | |||
100 | /** |
||
101 | * @return string |
||
102 | */ |
||
103 | 4 | public function project_rules() { |
|
106 | |||
107 | /** |
||
108 | * @return string |
||
109 | */ |
||
110 | 8 | public function project_root() { |
|
113 | |||
114 | /** |
||
115 | * @return string |
||
116 | */ |
||
117 | 7 | public function project_storage() { |
|
120 | |||
121 | /** |
||
122 | * @return string[] |
||
123 | */ |
||
124 | 5 | public function analysis_ignore() { |
|
127 | } |
||
128 |