Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | private function addApiSection(ArrayNodeDefinition $node): void |
||
40 | { |
||
41 | $node |
||
42 | ->children() |
||
43 | ->arrayNode('api') |
||
44 | ->addDefaultsIfNotSet() |
||
45 | ->children() |
||
46 | ->scalarNode('app_id')->isRequired()->end() |
||
47 | ->scalarNode('shared_secret')->isRequired()->end() |
||
48 | ->scalarNode('endpoint')->defaultValue('http://ws.audioscrobbler.com/2.0/')->end() |
||
49 | ->scalarNode('auth_url')->defaultValue('http://www.last.fm/api/auth/')->end() |
||
50 | ->end() |
||
51 | ->end() |
||
52 | ->end(); |
||
53 | } |
||
54 | |||
73 |