Completed
Push — Recipes ( c0466a...7632b6 )
by Laurent
04:22
created
src/Form/EventListener/AddSaveEditFieldSubscriber.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
             $form->add(
44 44
                 'save',
45 45
                 SubmitType::class,
46
-                ['attr' => ['class' => 'btn btn-default btn-primary btn-create',], 'label' => 'Create',
47
-                    'translation_domain' => 'admin',]
46
+                ['attr' => ['class' => 'btn btn-default btn-primary btn-create', ], 'label' => 'Create',
47
+                    'translation_domain' => 'admin', ]
48 48
             )
49 49
             ->add(
50 50
                 'addmore',
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
             $form->add(
57 57
                 'save',
58 58
                 SubmitType::class,
59
-                ['attr' => ['class' => 'btn btn-default btn-primary btn-edit',], 'label' => 'Edit',
60
-                    'translation_domain' => 'admin',]
59
+                ['attr' => ['class' => 'btn btn-default btn-primary btn-edit', ], 'label' => 'Edit',
60
+                    'translation_domain' => 'admin', ]
61 61
             );
62 62
         }
63 63
     }
Please login to merge, or discard this patch.
src/Form/Type/FamilyLogSelectType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@
 block discarded – undo
32 32
     {
33 33
         $resolver->setDefaults(
34 34
             ['class' => 'App:Settings\Diverse\FamilyLog',
35
-                'query_builder' => function (EntityRepository $er) {
35
+                'query_builder' => function(EntityRepository $er) {
36 36
                     return $er->createQueryBuilder('f')
37 37
                         ->orderBy('f.path', 'ASC');
38
-                }, ]
38
+                },]
39 39
         );
40 40
     }
41 41
 
Please login to merge, or discard this patch.