| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 14 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | 1 | private function addServiceSection(ArrayNodeDefinition $node) |
|
| 47 | { |
||
| 48 | $node |
||
| 49 | 1 | ->addDefaultsIfNotSet() |
|
| 50 | 1 | ->children() |
|
| 51 | 1 | ->arrayNode('service') |
|
| 52 | 1 | ->addDefaultsIfNotSet() |
|
| 53 | 1 | ->children() |
|
| 54 | 1 | ->scalarNode('email_canonicalizer')->defaultValue('doyo_user.util.canonicalizer.default')->end() |
|
| 55 | 1 | ->scalarNode('username_canonicalizer')->defaultValue('doyo_user.util.canonicalizer.default')->end() |
|
| 56 | 1 | ->scalarNode('password_updater')->defaultValue('doyo_user.util.password_updater.default')->end() |
|
| 57 | 1 | ->scalarNode('user_manager')->defaultValue('doyo_user.user_manager.default')->end() |
|
| 58 | 1 | ->end() |
|
| 59 | 1 | ->end() |
|
| 60 | 1 | ->end() |
|
| 61 | 1 | ->end(); |
|
| 62 | } |
||
| 64 |