| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 14 | 
| Code Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 50 | public function addConfiguration(NodeDefinition $node)  | 
            ||
| 51 |     { | 
            ||
| 52 | $node  | 
            ||
| 53 | ->children()  | 
            ||
| 54 |                 ->booleanNode('is_public') | 
            ||
| 55 |                     ->info('If true, the service will be public, else private.') | 
            ||
| 56 | ->defaultTrue()  | 
            ||
| 57 | ->end()  | 
            ||
| 58 |                 ->arrayNode('id') | 
            ||
| 59 |                     ->prototype('scalar')->end() | 
            ||
| 60 | ->isRequired()  | 
            ||
| 61 | ->end()  | 
            ||
| 62 | ->end();  | 
            ||
| 63 | }  | 
            ||
| 64 | }  | 
            ||
| 65 |