Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 18 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 3 | public function getConfigTreeBuilder() |
|
32 | { |
||
33 | 3 | return (new TreeBuilder()) |
|
34 | 3 | ->root('anime_db_smotret_anime_browser') |
|
35 | 3 | ->children() |
|
36 | 3 | ->scalarNode('host') |
|
37 | 3 | ->defaultValue('http://smotret-anime.ru') |
|
38 | 3 | ->cannotBeEmpty() |
|
39 | 3 | ->end() |
|
40 | 3 | ->scalarNode('prefix') |
|
41 | 3 | ->defaultValue('/api/') |
|
42 | 3 | ->cannotBeEmpty() |
|
43 | 3 | ->end() |
|
44 | 3 | ->scalarNode('client') |
|
45 | 3 | ->cannotBeEmpty() |
|
46 | 3 | ->isRequired() |
|
47 | 3 | ->end() |
|
48 | 3 | ->end() |
|
49 | 3 | ->end() |
|
50 | ; |
||
53 |