| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 30 | protected function setDefaultOptions(OptionsResolver $resolver) |
||
| 31 | { |
||
| 32 | parent::setDefaultOptions($resolver); |
||
| 33 | |||
| 34 | $resolver->setDefaults( |
||
| 35 | [ |
||
| 36 | 'route' => 'pim_customentity_create', |
||
| 37 | 'create_values' => [], |
||
| 38 | 'create_options' => [], |
||
| 39 | 'success_message' => sprintf('flash.%s.created', $this->configuration->getName()) |
||
| 40 | ] |
||
| 41 | ); |
||
| 42 | } |
||
| 43 | |||
| 52 |