Completed
Push — development ( 8e146e...2059ab )
by Thomas
22s queued 12s
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/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/Controller/Backend/SupportController.php 1 patch
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -166,9 +166,9 @@  discard block
 block discarded – undo
166 166
 
167 167
         return $this->render(
168 168
             'backend/support/searchedCaches.html.twig', [
169
-                                                          'supportCachesForm' => $formSearch->createView(),
170
-                                                          'foundCaches' => $fetchedCaches
171
-                                                      ]
169
+                                                            'supportCachesForm' => $formSearch->createView(),
170
+                                                            'foundCaches' => $fetchedCaches
171
+                                                        ]
172 172
         );
173 173
     }
174 174
 
@@ -187,9 +187,9 @@  discard block
 block discarded – undo
187 187
 
188 188
         return $this->render(
189 189
             'backend/support/reportedCaches.html.twig', [
190
-                                                          'supportCachesForm' => $formSearch->createView(),
191
-                                                          'reportedCaches_by_id' => $fetchedReports
192
-                                                      ]
190
+                                                            'supportCachesForm' => $formSearch->createView(),
191
+                                                            'reportedCaches_by_id' => $fetchedReports
192
+                                                        ]
193 193
         );
194 194
     }
195 195
 
@@ -207,9 +207,9 @@  discard block
 block discarded – undo
207 207
 
208 208
         return $this->render(
209 209
             'backend/support/bonusCaches.html.twig', [
210
-                                                       'supportCachesForm' => $formSearch->createView(),
211
-                                                       'bonusCaches_by_id' => $fetchedBonuscaches
212
-                                                   ]
210
+                                                        'supportCachesForm' => $formSearch->createView(),
211
+                                                        'bonusCaches_by_id' => $fetchedBonuscaches
212
+                                                    ]
213 213
         );
214 214
     }
215 215
 
@@ -250,10 +250,10 @@  discard block
 block discarded – undo
250 250
 
251 251
         return $this->render(
252 252
             'backend/support/databaseQueries.html.twig', [
253
-                                                           'supportCachesForm' => $formSearch->createView(),
254
-                                                           'SQLFlexForm' => $form->createView(),
255
-                                                           'suppSQLqueryFlex' => $fetchedInformation
256
-                                                       ]
253
+                                                            'supportCachesForm' => $formSearch->createView(),
254
+                                                            'SQLFlexForm' => $form->createView(),
255
+                                                            'suppSQLqueryFlex' => $fetchedInformation
256
+                                                        ]
257 257
         );
258 258
     }
259 259
 
@@ -381,16 +381,16 @@  discard block
 block discarded – undo
381 381
 
382 382
         return $this->render(
383 383
             'backend/support/occ.html.twig', [
384
-                                               'supportCachesForm' => $formSearch->createView(),
385
-                                               'supportCommentFormUser' => $formCommentUser->createView(),
386
-                                               'supportCommentFormCache' => $formCommentCache->createView(),
387
-                                               'occ_cache_data' => $fetchedCacheData,
388
-                                               'occ_cache_comments' => $fetchedCacheComments,
389
-                                               'occ_cache_infos' => $fetchedCacheInfos,
390
-                                               'occ_user_data' => $fetchedUserData,
391
-                                               'occ_user_comments' => $fetchedUserComments,
392
-                                               'occ_user_relations' => $fetchedUserRelations
393
-                                           ]
384
+                                                'supportCachesForm' => $formSearch->createView(),
385
+                                                'supportCommentFormUser' => $formCommentUser->createView(),
386
+                                                'supportCommentFormCache' => $formCommentCache->createView(),
387
+                                                'occ_cache_data' => $fetchedCacheData,
388
+                                                'occ_cache_comments' => $fetchedCacheComments,
389
+                                                'occ_cache_infos' => $fetchedCacheInfos,
390
+                                                'occ_user_data' => $fetchedUserData,
391
+                                                'occ_user_comments' => $fetchedUserComments,
392
+                                                'occ_user_relations' => $fetchedUserRelations
393
+                                            ]
394 394
         );
395 395
     }
396 396
 
@@ -514,10 +514,10 @@  discard block
 block discarded – undo
514 514
 
515 515
         return $this->render(
516 516
             'backend/support/userDetails.html.twig', [
517
-                                                       'supportCachesForm' => $formSearch->createView(),
518
-                                                       'supportUserAccountActions' => $formActions->createView(),
519
-                                                       'user_account_details' => $fetchedUserDetails
520
-                                                   ]
517
+                                                        'supportCachesForm' => $formSearch->createView(),
518
+                                                        'supportUserAccountActions' => $formActions->createView(),
519
+                                                        'user_account_details' => $fetchedUserDetails
520
+                                                    ]
521 521
         );
522 522
     }
523 523
 
@@ -608,9 +608,9 @@  discard block
 block discarded – undo
608 608
 
609 609
         return $this->render(
610 610
             'backend/support/databaseQueries.html.twig', [
611
-                                                           'supportCachesForm' => $formSearch->createView(),
612
-                                                           'suppSQLquery1' => $qb->execute()->fetchAll()
613
-                                                       ]
611
+                                                            'supportCachesForm' => $formSearch->createView(),
612
+                                                            'suppSQLquery1' => $qb->execute()->fetchAll()
613
+                                                        ]
614 614
         );
615 615
     }
616 616
 
@@ -634,9 +634,9 @@  discard block
 block discarded – undo
634 634
 
635 635
         return $this->render(
636 636
             'backend/support/databaseQueries.html.twig', [
637
-                                                           'supportCachesForm' => $formSearch->createView(),
638
-                                                           'suppSQLquery2' => $qb->execute()->fetchAll()
639
-                                                       ]
637
+                                                            'supportCachesForm' => $formSearch->createView(),
638
+                                                            'suppSQLquery2' => $qb->execute()->fetchAll()
639
+                                                        ]
640 640
         );
641 641
     }
642 642
 
@@ -662,9 +662,9 @@  discard block
 block discarded – undo
662 662
 
663 663
         return $this->render(
664 664
             'backend/support/databaseQueries.html.twig', [
665
-                                                           'supportCachesForm' => $formSearch->createView(),
666
-                                                           'suppSQLquery4' => $qb->execute()->fetchAll()
667
-                                                       ]
665
+                                                            'supportCachesForm' => $formSearch->createView(),
666
+                                                            'suppSQLquery4' => $qb->execute()->fetchAll()
667
+                                                        ]
668 668
         );
669 669
     }
670 670
 
@@ -680,9 +680,9 @@  discard block
 block discarded – undo
680 680
 
681 681
         return $this->render(
682 682
             'backend/support/databaseQueries.html.twig', [
683
-                                                           'supportCachesForm' => $formSearch->createView(),
684
-                                                           'suppSQLquery5' => $this->supportUserCommentsRepository->fetchAll()
685
-                                                       ]
683
+                                                            'supportCachesForm' => $formSearch->createView(),
684
+                                                            'suppSQLquery5' => $this->supportUserCommentsRepository->fetchAll()
685
+                                                        ]
686 686
         );
687 687
     }
688 688
 
Please login to merge, or discard this patch.
htdocs_symfony/src/Form/SupportUserAccountDetails.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -19,21 +19,21 @@
 block discarded – undo
19 19
         $builder
20 20
             ->add(
21 21
                 'button_account_inactive', SubmitType::class, [
22
-                                             'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 180px;'],
23
-                                             'label' => false
24
-                                         ]
22
+                                                'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 180px;'],
23
+                                                'label' => false
24
+                                            ]
25 25
             )
26 26
             ->add(
27 27
                 'button_GDPR_deletion', SubmitType::class, [
28
-                                          'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 180px;'],
29
-                                          'label' => false
30
-                                      ]
28
+                                            'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 180px;'],
29
+                                            'label' => false
30
+                                        ]
31 31
             )
32 32
             ->add(
33 33
                 'button_mark_email_invalid', SubmitType::class, [
34
-                                               'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 180px;'],
35
-                                               'label' => false
36
-                                           ]
34
+                                                'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 180px;'],
35
+                                                'label' => false
36
+                                            ]
37 37
             )
38 38
             ->add(
39 39
                 'check_Sure', CheckboxType::class, [
Please login to merge, or discard this patch.
htdocs_symfony/src/Form/SupportCommentField.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -24,22 +24,22 @@
 block discarded – undo
24 24
         $builder
25 25
             ->add(
26 26
                 'content_comment_field', TextareaType::class, [
27
-                                           'attr' => [
28
-                                               'maxlength' => '100000',
29
-                                               'overflow' => 'auto',
30
-                                               'rows' => '10',
31
-                                           ],
32
-                                           'required' => false,
33
-                                           'disabled' => false,
34
-                                           'label' => false,
35
-                                           'trim' => true
36
-                                       ]
27
+                                            'attr' => [
28
+                                                'maxlength' => '100000',
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_comment_button', SubmitType::class, [
40
-                                         'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 180px;'],
41
-                                         'label' => '
Please login to merge, or discard this patch.