| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| 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 | )); |
||
| 35 | |||
| 36 | $resolver->setAllowedTypes('attr', 'array'); |
||
| 37 | } |
||
| 38 | |||
| 65 |