| Total Complexity | 10 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class AutoField extends AbstractField |
||
| 11 | { |
||
| 12 | public function configureOptions(OptionsResolver $resolver): void |
||
| 13 | { |
||
| 14 | 3 | $resolver |
|
| 15 | ->setDefaults([ |
||
| 16 | 'template' => '@LAGAdmin/fields/auto.html.twig', |
||
| 17 | 3 | 'date_format' => 'd/m/Y', |
|
| 18 | 3 | ]) |
|
| 19 | ->setAllowedTypes('date_format', 'string') |
||
| 20 | ; |
||
| 21 | 3 | } |
|
| 22 | |||
| 23 | 3 | public function getDataTransformer(): ?\Closure |
|
| 55 | }; |
||
| 56 | 1 | } |
|
| 58 |