| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function configureOptions(OptionsResolver $resolver) |
||
| 28 | { |
||
| 29 | $resolver->setDefaults([ |
||
| 30 | 'translation_domain' => 'obblm', |
||
| 31 | 'helper' => null, |
||
| 32 | 'data_class' => Team::class, |
||
| 33 | 'creation_options' => true |
||
| 34 | ]); |
||
| 35 | $resolver->setAllowedTypes('creation_options', ['bool']); |
||
| 36 | $resolver->setAllowedTypes('helper', [RuleHelperInterface::class]); |
||
| 37 | } |
||
| 39 |