Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 13 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
24 | public function configureOptions(OptionsResolver $resolver) |
||
25 | { |
||
26 | parent::configureOptions($resolver); |
||
27 | |||
28 | $resolver->setDefaults(array( |
||
29 | 'align' => 'left', |
||
30 | 'cellAlign' => 'left', |
||
31 | 'format' => 'number', |
||
32 | 'type' => 'string', |
||
33 | )); |
||
34 | |||
35 | $resolver->setAllowedTypes('attr', 'array'); |
||
36 | } |
||
37 | } |
||
38 |