Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 13 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
38 | View Code Duplication | public function getLocaleFormParams() |
|
39 | { |
||
40 | return [ |
||
41 | 'type' => ChoiceType::class, |
||
42 | 'options' => [ |
||
43 | 'choices' => $this->availableLocales, |
||
44 | 'choices_as_values' => true, |
||
45 | 'choice_label' => function ($value) { |
||
46 | return $value; |
||
47 | }, |
||
48 | ], |
||
49 | ]; |
||
50 | } |
||
51 | |||
65 |