Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 13 |
Ratio | 100 % |
Changes | 2 | ||
Bugs | 0 | Features | 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 | 'format' => 'number', |
||
33 | 'type' => 'string', |
||
34 | )); |
||
35 | |||
36 | $resolver->setAllowedTypes('attr', 'array'); |
||
37 | } |
||
38 | } |
||
39 |