Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function configureOptions(OptionsResolver $resolver) |
||
26 | { |
||
27 | parent::configureOptions($resolver); |
||
28 | |||
29 | $resolver->setDefaults(array( |
||
30 | 'type' => 'image', |
||
31 | 'minListWidth' => null, |
||
32 | 'filter' => [], |
||
33 | 'prefix' => null, |
||
34 | 'flex' => null, |
||
35 | 'searchable' => null, |
||
36 | 'align' => null, |
||
37 | 'cellAlign' => null, |
||
38 | 'sortable' => null, |
||
39 | )); |
||
40 | |||
41 | $resolver->setAllowedTypes('attr', 'array'); |
||
42 | } |
||
43 | |||
70 |