Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 14 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | 3 | public function getConfigTreeBuilder() |
|
30 | { |
||
31 | 3 | return (new TreeBuilder()) |
|
32 | 3 | ->root('anime_db_shikimori_browser') |
|
33 | 3 | ->children() |
|
34 | 3 | ->scalarNode('host') |
|
35 | 3 | ->cannotBeEmpty() |
|
36 | 3 | ->defaultValue('https://shikimori.org') |
|
37 | 3 | ->end() |
|
38 | 3 | ->scalarNode('prefix') |
|
39 | 3 | ->cannotBeEmpty() |
|
40 | 3 | ->defaultValue('/api/') |
|
41 | 3 | ->end() |
|
42 | 3 | ->end() |
|
43 | 3 | ->end() |
|
44 | ; |
||
45 | } |
||
46 | } |
||
47 |