| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 14 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | 2 | private function configureJms(ArrayNodeDefinition $adapters) |
|
| 32 | 1 | { |
|
| 33 | 3 | $jms = $adapters->children()->arrayNode('jms'); |
|
| 34 | 1 | ||
| 35 | 2 | $jms->children() |
|
| 36 | 3 | ->arrayNode('relation_handlers') |
|
| 37 | 4 | ->fixXmlConfig('relation_handler') |
|
| 38 | 5 | ->useAttributeAsKey('handler') |
|
| 39 | 4 | ->prototype('scalar') |
|
| 40 | 5 | ->info( |
|
| 41 | 5 | 'Key: Relation handler name (i.e. "Relation"), Value: service ID for relation handler entity manager' |
|
| 42 | 3 | ) |
|
| 43 | 3 | ->isRequired(); |
|
| 44 | 4 | } |
|
| 45 | } |
||
| 46 |