| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| 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' => 'left', |
||
| 31 | 'cellAlign' => 'left', |
||
| 32 | 'type' => 'combo', |
||
| 33 | 'data' => [], |
||
| 34 | )); |
||
| 35 | |||
| 36 | $resolver->setAllowedTypes('attr', 'array'); |
||
| 37 | $resolver->setAllowedTypes('data', 'array'); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |