| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function configureOptions(OptionsResolver $resolver) |
||
| 26 | { |
||
| 27 | parent::configureOptions($resolver); |
||
| 28 | |||
| 29 | $resolver->setDefaults(array( |
||
| 30 | 'align' => 'right', |
||
| 31 | 'cellAlign' => 'right', |
||
| 32 | 'format' => 'number', |
||
| 33 | 'type' => 'number', |
||
| 34 | 'summary' => null, |
||
| 35 | 'step' => null, |
||
| 36 | )); |
||
| 37 | |||
| 38 | $resolver->setAllowedTypes('attr', 'array'); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |