| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | protected function configureResourceNode(ArrayNodeDefinition $resourceNode) |
||
| 34 | { |
||
| 35 | $resourceNode |
||
| 36 | ->children() |
||
| 37 | ->scalarNode('random_id')->cannotBeEmpty()->end() |
||
| 38 | ->scalarNode('secret')->cannotBeEmpty()->end() |
||
| 39 | ->arrayNode('allowed_grant_types')->prototype('scalar')->cannotBeEmpty()->defaultValue([])->end() |
||
| 40 | ; |
||
| 41 | } |
||
| 42 | } |
||
| 43 |