Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
25 | protected function setDefaultOptions(OptionsResolver $resolver) |
||
26 | { |
||
27 | parent::setDefaultOptions($resolver); |
||
28 | |||
29 | $resolver->setDefaults( |
||
30 | [ |
||
31 | 'template' => 'PimCustomEntityBundle:CustomEntity:_history.html.twig', |
||
32 | 'route' => 'pim_customentity_history', |
||
33 | 'datagrid_name' => 'history-grid' |
||
34 | ] |
||
35 | ); |
||
36 | } |
||
37 | |||
46 |