Completed
Pull Request — development (#831)
by
unknown
01:03
created
htdocs_symfony/src/Controller/App/KitchensinkController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function index(): Response
15 15
     {
16
-       return $this->render('kitchensink/index.html.twig');
16
+        return $this->render('kitchensink/index.html.twig');
17 17
     }
18 18
 
19 19
     /**
Please login to merge, or discard this patch.
htdocs_symfony/src/Form/SupportSearchCaches.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -19,19 +19,19 @@
 block discarded – undo
19 19
         $builder
20 20
             ->add(
21 21
                 'content_support_searchfield', null, [
22
-                                                 'attr' => [
23
-                                                     'placeholder' => 'OC / GC / Name / Owner / %%%',
24
-                                                     'autofocus' => 'autofocus',
25
-                                                     'size' => '10%',
26
-                                                     'minlength' => '3',
27
-                                                     'maxlength' => '100',
28
-                                                     'style' => 'width: 250px;'
29
-                                                 ],
30
-                                                 'required' => true,
31
-                                                 'disabled' => false,
32
-                                                 'label' => false,
33
-                                                 'trim' => true
34
-                                             ]
22
+                                                    'attr' => [
23
+                                                        'placeholder' => 'OC / GC / Name / Owner / %%%',
24
+                                                        'autofocus' => 'autofocus',
25
+                                                        'size' => '10%',
26
+                                                        'minlength' => '3',
27
+                                                        'maxlength' => '100',
28
+                                                        'style' => 'width: 250px;'
29
+                                                    ],
30
+                                                    'required' => true,
31
+                                                    'disabled' => false,
32
+                                                    'label' => false,
33
+                                                    'trim' => true
34
+                                                ]
35 35
             )
36 36
             ->add(
37 37
                 'search_All', SubmitType::class, [
Please login to merge, or discard this patch.
htdocs_symfony/src/Controller/Backend/SupportController.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -90,9 +90,9 @@  discard block
 block discarded – undo
90 90
 
91 91
         return $this->render(
92 92
             'backend/support/searchedCaches.html.twig', [
93
-                                                          'supportCachesForm' => $formSearch->createView(),
94
-                                                          'foundCaches' => $fetchedCaches
95
-                                                      ]
93
+                                                            'supportCachesForm' => $formSearch->createView(),
94
+                                                            'foundCaches' => $fetchedCaches
95
+                                                        ]
96 96
         );
97 97
     }
98 98
 
@@ -110,9 +110,9 @@  discard block
 block discarded – undo
110 110
 
111 111
         return $this->render(
112 112
             'backend/support/reportedCaches.html.twig', [
113
-                                                          'supportCachesForm' => $formSearch->createView(),
114
-                                                          'reportedCaches_by_id' => $fetchedReports
115
-                                                      ]
113
+                                                            'supportCachesForm' => $formSearch->createView(),
114
+                                                            'reportedCaches_by_id' => $fetchedReports
115
+                                                        ]
116 116
         );
117 117
     }
118 118
 
@@ -150,10 +150,10 @@  discard block
 block discarded – undo
150 150
 
151 151
         return $this->render(
152 152
             'backend/support/databaseQueries.html.twig', [
153
-                                                           'supportCachesForm' => $formSearch->createView(),
154
-                                                           'SQLFlexForm' => $form->createView(),
155
-                                                           'suppSQLqueryFlex' => $fetchedInformation
156
-                                                       ]
153
+                                                            'supportCachesForm' => $formSearch->createView(),
154
+                                                            'SQLFlexForm' => $form->createView(),
155
+                                                            'suppSQLqueryFlex' => $fetchedInformation
156
+                                                        ]
157 157
         );
158 158
     }
159 159
 
@@ -256,9 +256,9 @@  discard block
 block discarded – undo
256 256
 
257 257
         return $this->render(
258 258
             'backend/support/databaseQueries.html.twig', [
259
-                                                           'supportCachesForm' => $formSearch->createView(),
260
-                                                           'suppSQLquery1' => $qb->execute()->fetchAll()
261
-                                                       ]
259
+                                                            'supportCachesForm' => $formSearch->createView(),
260
+                                                            'suppSQLquery1' => $qb->execute()->fetchAll()
261
+                                                        ]
262 262
         );
263 263
     }
264 264
 
@@ -282,9 +282,9 @@  discard block
 block discarded – undo
282 282
 
283 283
         return $this->render(
284 284
             'backend/support/databaseQueries.html.twig', [
285
-                                                           'supportCachesForm' => $formSearch->createView(),
286
-                                                           'suppSQLquery2' => $qb->execute()->fetchAll()
287
-                                                       ]
285
+                                                            'supportCachesForm' => $formSearch->createView(),
286
+                                                            'suppSQLquery2' => $qb->execute()->fetchAll()
287
+                                                        ]
288 288
         );
289 289
     }
290 290
 
@@ -310,9 +310,9 @@  discard block
 block discarded – undo
310 310
 
311 311
         return $this->render(
312 312
             'backend/support/databaseQueries.html.twig', [
313
-                                                           'supportCachesForm' => $formSearch->createView(),
314
-                                                           'suppSQLquery4' => $qb->execute()->fetchAll()
315
-                                                       ]
313
+                                                            'supportCachesForm' => $formSearch->createView(),
314
+                                                            'suppSQLquery4' => $qb->execute()->fetchAll()
315
+                                                        ]
316 316
         );
317 317
     }
318 318
 
Please login to merge, or discard this patch.
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.