Completed
Pull Request — development (#829)
by
unknown
04:57
created
htdocs_symfony/src/Form/SupportSQLFlexForm.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -31,37 +31,37 @@
 block discarded – undo
31 31
             )
32 32
             ->add(
33 33
                 'content_WHAT', null, [
34
-                                  'required' => true,
35
-                                  'data' => '*',
36
-                                  'attr' => [
37
-                                      'style' => 'width: 180px;'
38
-                                  ],
39
-                                  'disabled' => false,
40
-                                  'label' => false,
41
-                                  'trim' => true
42
-                              ]
34
+                                    'required' => true,
35
+                                    'data' => '*',
36
+                                    'attr' => [
37
+                                        'style' => 'width: 180px;'
38
+                                    ],
39
+                                    'disabled' => false,
40
+                                    'label' => false,
41
+                                    'trim' => true
42
+                                ]
43 43
             )
44 44
             ->add(
45 45
                 'content_FROM', ChoiceType::class, [
46
-                                  'choices' => ['FROM' => 'FROM'],
47
-                                  'attr' => [
48
-                                      'style' => 'width: 180px;'
49
-                                  ],
50
-                                  'disabled' => true,
51
-                                  'label' => false,
52
-                                  'trim' => true
53
-                              ]
46
+                                    'choices' => ['FROM' => 'FROM'],
47
+                                    'attr' => [
48
+                                        'style' => 'width: 180px;'
49
+                                    ],
50
+                                    'disabled' => true,
51
+                                    'label' => false,
52
+                                    'trim' => true
53
+                                ]
54 54
             )
55 55
             ->add(
56 56
                 'content_TABLE', ChoiceType::class, [
57
-                                   'choices' => ['caches' => 'caches', 'user' => 'user'],
58
-                                   'attr' => [
59
-                                       'style' => 'width: 180px;'
60
-                                   ],
61
-                                   'disabled' => false,
62
-                                   'label' => false,
63
-                                   'trim' => true
64
-                               ]
57
+                                    'choices' => ['caches' => 'caches', 'user' => 'user'],
58
+                                    'attr' => [
59
+                                        'style' => 'width: 180px;'
60
+                                    ],
61
+                                    'disabled' => false,
62
+                                    'label' => false,
63
+                                    'trim' => true
64
+                                ]
65 65
             )
66 66
             ->add(
67 67
                 'Suchen', SubmitType::class, [
Please login to merge, or discard this patch.
htdocs_symfony/src/Form/SupportAdminComment.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -24,16 +24,16 @@  discard block
 block discarded – undo
24 24
         $builder
25 25
             ->add(
26 26
                 'support_admin_comment', TextareaType::class, [
27
-                                           'attr' => [
28
-                                               'maxlength' => '32000',
29
-                                               'overflow' => 'auto',
30
-                                               'rows' => '10',
31
-                                           ],
32
-                                           'required' => false,
33
-                                           'disabled' => false,
34
-                                           'label' => false,
35
-                                           'trim' => true
36
-                                       ]
27
+                                            'attr' => [
28
+                                                'maxlength' => '32000',
29
+                                                'overflow' => 'auto',
30
+                                                'rows' => '10',
31
+                                            ],
32
+                                            'required' => false,
33
+                                            'disabled' => false,
34
+                                            'label' => false,
35
+                                            'trim' => true
36
+                                        ]
37 37
             )
38 38
             ->add(
39 39
                 'save_admin_comment', SubmitType::class, [
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
             )
44 44
             ->add(
45 45
                 'hidden_repID', HiddenType::class, [
46
-                                  'attr' => ['maxlength' => '10'],
47
-                              ]
46
+                                    'attr' => ['maxlength' => '10'],
47
+                                ]
48 48
             );
49 49
     }
50 50
 }
Please login to merge, or discard this patch.