Completed
Pull Request — development (#825)
by
unknown
06:18
created
htdocs_symfony/src/Controller/Backend/SupportController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
 
106 106
             $fetchedInformation = $this->executeSQL_flexible($inputData['content_WHAT'], $inputData['content_TABLE']);
107 107
 
108
-            for ($i = 0; $i < count($fetchedInformation); $i ++) {
108
+            for ($i = 0; $i < count($fetchedInformation); $i++) {
109 109
                 if (array_key_exists('password', $fetchedInformation[$i])) {
110 110
                     $fetchedInformation[$i]['password'] = '-';
111 111
                 }
Please login to merge, or discard this patch.
htdocs_symfony/src/Form/SupportSQLFlexForm.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
             )
50 50
             ->add(
51 51
                 'content_TABLE', ChoiceType::class, [
52
-                                   'choices' => ['caches' => 'caches', 'user' => 'user',],
52
+                                   'choices' => ['caches' => 'caches', 'user' => 'user', ],
53 53
                                    'attr' => [
54 54
                                        'style' => 'width: 300px;'
55 55
                                    ],
Please login to merge, or discard this patch.