| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | 2 | public function configureOptions(OptionsResolver $resolver) |
|
| 10 | { |
||
| 11 | 2 | $resolver->setDefaults([ |
|
| 12 | 2 | 'options' => [], |
|
| 13 | ]) |
||
| 14 | 2 | ->setRequired('players') |
|
| 15 | 2 | ->setRequired('reroll_cost') |
|
| 16 | 2 | ->setAllowedTypes('players', ['array']) |
|
| 17 | 2 | ->setAllowedTypes('reroll_cost', ['int']) |
|
| 18 | 2 | ->setAllowedTypes('options', ['array']) |
|
| 19 | ; |
||
| 22 |