Completed
Push — development ( 581ebd...440602 )
by Thomas
05:12 queued 11s
created
htdocs_symfony/src/Form/SupportSQLFlexForm.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -26,37 +26,37 @@
 block discarded – undo
26 26
             )
27 27
             ->add(
28 28
                 'content_WHAT', null, [
29
-                                  'required' => true,
30
-                                  'data' => '*',
31
-                                  'attr' => [
32
-                                      'style' => 'width: 300px;'
33
-                                  ],
34
-                                  'disabled' => false,
35
-                                  'label' => false,
36
-                                  'trim' => true
37
-                              ]
29
+                                    'required' => true,
30
+                                    'data' => '*',
31
+                                    'attr' => [
32
+                                        'style' => 'width: 300px;'
33
+                                    ],
34
+                                    'disabled' => false,
35
+                                    'label' => false,
36
+                                    'trim' => true
37
+                                ]
38 38
             )
39 39
             ->add(
40 40
                 'content_FROM', ChoiceType::class, [
41
-                                  'choices' => ['FROM' => 'FROM'],
42
-                                  'attr' => [
43
-                                      'style' => 'width: 300px;'
44
-                                  ],
45
-                                  'disabled' => true,
46
-                                  'label' => false,
47
-                                  'trim' => true
48
-                              ]
41
+                                    'choices' => ['FROM' => 'FROM'],
42
+                                    'attr' => [
43
+                                        'style' => 'width: 300px;'
44
+                                    ],
45
+                                    'disabled' => true,
46
+                                    'label' => false,
47
+                                    'trim' => true
48
+                                ]
49 49
             )
50 50
             ->add(
51 51
                 'content_TABLE', ChoiceType::class, [
52
-                                   'choices' => ['caches' => 'caches', 'user' => 'user'],
53
-                                   'attr' => [
54
-                                       'style' => 'width: 300px;'
55
-                                   ],
56
-                                   'disabled' => false,
57
-                                   'label' => false,
58
-                                   'trim' => true
59
-                               ]
52
+                                    'choices' => ['caches' => 'caches', 'user' => 'user'],
53
+                                    'attr' => [
54
+                                        'style' => 'width: 300px;'
55
+                                    ],
56
+                                    'disabled' => false,
57
+                                    'label' => false,
58
+                                    'trim' => true
59
+                                ]
60 60
             )
61 61
             ->add('Suchen', SubmitType::class, ['attr' => ['class' => 'btn btn-primary']]);
62 62
     }
Please login to merge, or discard this patch.