Completed
Push — Recipes ( c99128 )
by Laurent
13:15
created
src/AppBundle/Controller/Orders/OrdersController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
         $orders = new Orders();
112 112
         $form = $this->createForm(OrdersType::class, $orders);
113
-        $return = ['orders' => $orders, 'form' => $form->createView(),];
113
+        $return = ['orders' => $orders, 'form' => $form->createView(), ];
114 114
         $form->handleRequest($request);
115 115
         $supplier = $orders->getSupplier();
116 116
         $articles = $etm->getRepository('AppBundle:Settings\Article')->getArticleFromSupplier($supplier->getId());
@@ -148,11 +148,11 @@  discard block
 block discarded – undo
148 148
     public function editAction(Orders $orders)
149 149
     {
150 150
         $editForm = $this->createForm(OrdersEditType::class, $orders, ['action' => $this
151
-            ->generateUrl('orders_update', ['id' => $orders->getId()]), 'method' => 'PUT',]);
151
+            ->generateUrl('orders_update', ['id' => $orders->getId()]), 'method' => 'PUT', ]);
152 152
         $deleteForm = $this->createDeleteForm($orders->getId(), 'orders_delete');
153 153
 
154 154
         return ['orders' => $orders, 'edit_form' => $editForm->createView(),
155
-            'delete_form' => $deleteForm->createView(),];
155
+            'delete_form' => $deleteForm->createView(), ];
156 156
     }
157 157
 
158 158
     /**
@@ -165,12 +165,12 @@  discard block
 block discarded – undo
165 165
     public function updateAction(Orders $orders, Request $request)
166 166
     {
167 167
         $editForm = $this->createForm(OrdersEditType::class, $orders, ['action' => $this
168
-            ->generateUrl('orders_update', ['id' => $orders->getId()]), 'method' => 'PUT',]);
168
+            ->generateUrl('orders_update', ['id' => $orders->getId()]), 'method' => 'PUT', ]);
169 169
         $deleteForm = $this->createDeleteForm($orders->getId(), 'orders_delete');
170 170
         $editForm->handleRequest($request);
171 171
 
172 172
         $return = ['orders' => $orders, 'edit_form'   => $editForm->createView(),
173
-            'delete_form' => $deleteForm->createView(),];
173
+            'delete_form' => $deleteForm->createView(), ];
174 174
         
175 175
         if ($editForm->isValid()) {
176 176
             $this->getDoctrine()->getManager()->flush();
Please login to merge, or discard this patch.
src/AppBundle/Controller/AbstractController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
             $paginator = $this->get('knp_paginator')->paginate($entities, $request->query->get('page', 1), $item);
49 49
         }
50 50
 
51
-        return ['entities'  => $entities, 'ctEntity' => count($entities), 'paginator' => $paginator,];
51
+        return ['entities'  => $entities, 'ctEntity' => count($entities), 'paginator' => $paginator, ];
52 52
     }
53 53
 
54 54
     /**
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     {
63 63
         $deleteForm = $this->createDeleteForm($entity->getId(), $prefixRoute.'_delete');
64 64
 
65
-        return [$prefixRoute => $entity, 'delete_form' => $deleteForm->createView(),];
65
+        return [$prefixRoute => $entity, 'delete_form' => $deleteForm->createView(), ];
66 66
     }
67 67
 
68 68
     /**
@@ -86,12 +86,12 @@  discard block
 block discarded – undo
86 86
         }
87 87
 
88 88
         $entityNew = $etm->getClassMetadata($entityPath)->newInstance();
89
-        $form = $this->createForm($typePath, $entityNew, ['action' => $this->generateUrl($prefixRoute.'_create'),]);
89
+        $form = $this->createForm($typePath, $entityNew, ['action' => $this->generateUrl($prefixRoute.'_create'), ]);
90 90
 
91 91
         if ($entityName === 'Staff\Group') {
92 92
             $this->addRolesAction($form, $entityNew);
93 93
         }
94
-        $return = [strtolower($entityName) => $entityNew, 'form'   => $form->createView(),];
94
+        $return = [strtolower($entityName) => $entityNew, 'form'   => $form->createView(), ];
95 95
 
96 96
         return $return;
97 97
     }
@@ -110,12 +110,12 @@  discard block
 block discarded – undo
110 110
     {
111 111
         $etm = $this->getDoctrine()->getManager();
112 112
         $entityNew = $etm->getClassMetadata($entityPath)->newInstance();
113
-        $form = $this->createForm($typePath, $entityNew, ['action' => $this->generateUrl($prefixRoute.'_create'),]);
113
+        $form = $this->createForm($typePath, $entityNew, ['action' => $this->generateUrl($prefixRoute.'_create'), ]);
114 114
         if ($entityName === 'Staff\Group') {
115 115
             $this->addRolesAction($form, $entityNew);
116 116
         }
117 117
         $form->handleRequest($request);
118
-        $return = [$entityName => $entityNew, 'form' => $form->createView(),];
118
+        $return = [$entityName => $entityNew, 'form' => $form->createView(), ];
119 119
 
120 120
         if ($form->isValid()) {
121 121
             $etm = $this->getDoctrine()->getManager();
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         $deleteForm = $this->createDeleteForm($entity->getId(), $prefixRoute.'_delete');
156 156
 
157 157
         return [$prefixRoute => $entity, 'edit_form' => $editForm->createView(),
158
-            'delete_form' => $deleteForm->createView(),];
158
+            'delete_form' => $deleteForm->createView(), ];
159 159
     }
160 160
 
161 161
     /**
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         $deleteForm = $this->createDeleteForm($entity->getId(), $prefixRoute.'_delete');
182 182
 
183 183
         $return = [$prefixRoute => $entity, 'edit_form' => $editForm->createView(),
184
-            'delete_form' => $deleteForm->createView(),];
184
+            'delete_form' => $deleteForm->createView(), ];
185 185
 
186 186
         if ($editForm->isValid()) {
187 187
             $this->getDoctrine()->getManager()->flush();
@@ -223,9 +223,9 @@  discard block
 block discarded – undo
223 223
     public function abstractDeleteWithArticlesAction($entity, Request $request, $entityName, $prefixRoute)
224 224
     {
225 225
         $etm = $this->getDoctrine()->getManager();
226
-        $form = $this->createDeleteForm($entity->getId(), $prefixRoute . '_delete');
226
+        $form = $this->createDeleteForm($entity->getId(), $prefixRoute.'_delete');
227 227
         $entityArticles = $etm
228
-            ->getRepository('AppBundle:' .  $entityName . 'Articles')
228
+            ->getRepository('AppBundle:'.$entityName.'Articles')
229 229
             ->findBy([$prefixRoute => $entity->getId()]);
230 230
 
231 231
         if ($form->handleRequest($request)->isValid()) {
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
             } else {
261 261
                 $alias = current($qbd->getDQLPart('from'))->getAlias();
262 262
             }
263
-            $qbd->orderBy($alias . '.' . $order['field'], $order['type']);
263
+            $qbd->orderBy($alias.'.'.$order['field'], $order['type']);
264 264
         }
265 265
     }
266 266
 
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
      */
291 291
     protected function testReturnParam($entity, $prefixRoute)
292 292
     {
293
-        $entityArray = ['article', 'supplier', 'familylog', 'zonestorage', 'unit', 'material',];
293
+        $entityArray = ['article', 'supplier', 'familylog', 'zonestorage', 'unit', 'material', ];
294 294
         if (in_array($prefixRoute, $entityArray, true)) {
295 295
             $param = ['slug' => $entity->getSlug()];
296 296
         } else {
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/Stocks/InventoryEditType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@
 block discarded – undo
36 36
     {
37 37
         $builder
38 38
             ->remove('status')
39
-            ->add('articles', CollectionType::class, ['entry_type' => InventoryArticlesType::class,])
39
+            ->add('articles', CollectionType::class, ['entry_type' => InventoryArticlesType::class, ])
40 40
             ->add('amount', MoneyType::class, ['scale' => 3, 'grouping' => true, 'currency' => 'EUR',
41 41
                 'label' => 'seizure.totals', 'translation_domain' => 'gs_inventories',
42
-                'attr'=> ['class' => 'inventory form-control', 'readonly' => true,],]);
42
+                'attr'=> ['class' => 'inventory form-control', 'readonly' => true, ], ]);
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/Stocks/InventoryArticlesType.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,28 +37,28 @@
 block discarded – undo
37 37
         $builder
38 38
             ->add('inventory', EntityType::class, ['class' => 'AppBundle:Stocks\Inventory', 'choice_label' => 'id',
39 39
                 'label' => 'gestock.id', 'translation_domain' => 'messages', 'empty_data' => null,
40
-                'attr'=> ['class' => 'form-control', 'readonly' => true,],])
40
+                'attr'=> ['class' => 'form-control', 'readonly' => true, ], ])
41 41
             ->add('article', EntityType::class, ['class' => 'AppBundle:Settings\Article', 'choice_label' => 'name',
42 42
                 'label' => 'title', 'translation_domain' => 'gs_articles', 'empty_data' => null,
43
-                'attr'=> ['class' => 'form-control', 'readonly' => true,],])
43
+                'attr'=> ['class' => 'form-control', 'readonly' => true, ], ])
44 44
             ->add('quantity', NumberType::class, ['scale' => 3, 'grouping' => true, 'empty_data' => '0,000',
45 45
                     'label' => 'settings.quantity', 'translation_domain' => 'gs_articles',
46
-                    'attr'=> ['class' => 'inventory form-control', 'readonly' => true,],])
46
+                    'attr'=> ['class' => 'inventory form-control', 'readonly' => true, ], ])
47 47
             ->add('realstock', NumberType::class, ['scale' => 3, 'grouping' => true, 'empty_data' => '0,000',
48 48
                     'label' => 'seizure.realstock', 'translation_domain' => 'gs_inventories',
49
-                    'attr'=> ['class' => 'inventory form-control',],])
49
+                    'attr'=> ['class' => 'inventory form-control', ], ])
50 50
             ->add('unitStorage', EntityType::class, ['class' => 'AppBundle:Settings\Diverse\Unit',
51 51
                     'choice_label' => 'abbr', 'label' => 'gestock.settings.diverse.unitstorage', 'empty_data' => null,
52
-                    'attr'=> ['class' => 'form-control', 'readonly' => true,],])
52
+                    'attr'=> ['class' => 'form-control', 'readonly' => true, ], ])
53 53
             ->add('price', MoneyType::class, ['scale' => 3, 'grouping' => true, 'currency' => 'EUR',
54 54
                     'label' => 'settings.price', 'translation_domain' => 'gs_articles',
55
-                    'attr'=> ['class' => 'inventory form-control', 'readonly' => true,],])
55
+                    'attr'=> ['class' => 'inventory form-control', 'readonly' => true, ], ])
56 56
             ->add('total', MoneyType::class, ['scale' => 3, 'grouping' => true, 'currency' => 'EUR',
57 57
                     'label' => 'seizure.total', 'translation_domain' => 'gs_inventories', 'mapped' => false,
58
-                    'attr'=> ['class' => 'inventory form-control', 'readonly' => true,],])
58
+                    'attr'=> ['class' => 'inventory form-control', 'readonly' => true, ], ])
59 59
             ->add('gap', NumberType::class, ['scale' => 3, 'grouping' => true, 'label' => 'seizure.gap',
60 60
                     'translation_domain' => 'gs_inventories', 'mapped' => false,
61
-                    'attr'=> ['class' => 'inventory form-control', 'readonly' =>true,],]);
61
+                    'attr'=> ['class' => 'inventory form-control', 'readonly' =>true, ], ]);
62 62
     }
63 63
 
64 64
     /**
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/Settings/ArticleType.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -43,42 +43,42 @@  discard block
 block discarded – undo
43 43
     public function buildForm(FormBuilderInterface $builder, array $options)
44 44
     {
45 45
         $builder
46
-            ->add('name', TextType::class, ['label' => 'gestock.title_item', 'attr'  => ['class' => 'form-control',],])
46
+            ->add('name', TextType::class, ['label' => 'gestock.title_item', 'attr'  => ['class' => 'form-control', ], ])
47 47
             ->add('packaging', NumberType::class, ['scale' => 3, 'grouping' => true, 'label' => 'settings.packaging',
48
-                'translation_domain' => 'gs_articles', 'attr'  => ['class' => 'form-control',],])
48
+                'translation_domain' => 'gs_articles', 'attr'  => ['class' => 'form-control', ], ])
49 49
             ->add('price', MoneyType::class, ['scale' => 3, 'grouping' => true, 'currency' => 'EUR',
50 50
                 'label' => 'settings.price', 'translation_domain' => 'gs_articles',
51
-                'attr'  => ['class' => 'form-control',],])
51
+                'attr'  => ['class' => 'form-control', ], ])
52 52
             ->add('tva', EntityType::class, ['class' => 'AppBundle:Settings\Diverse\Tva', 'choice_label' => 'name',
53 53
                 'multiple' => false, 'label' => 'gestock.settings.diverse.vat',
54
-                'attr'  => ['class' => 'form-control',],])
54
+                'attr'  => ['class' => 'form-control', ], ])
55 55
             ->add('quantity', HiddenType::class)
56 56
             ->add('minstock', NumberType::class, ['scale' => 3, 'grouping' => true, 'label' => 'settings.stock_alert',
57
-                'translation_domain' => 'gs_articles', 'attr'  => ['class' => 'form-control',],])
58
-            ->add('active', CheckboxType::class, ['required' => false, 'label' => 'gestock.actif',])
57
+                'translation_domain' => 'gs_articles', 'attr'  => ['class' => 'form-control', ], ])
58
+            ->add('active', CheckboxType::class, ['required' => false, 'label' => 'gestock.actif', ])
59 59
             ->add('supplier', EntityType::class, ['class' => 'AppBundle:Settings\Supplier',
60
-                    'query_builder' => function (EntityRepository $er) {
60
+                    'query_builder' => function(EntityRepository $er) {
61 61
                         return $er->createQueryBuilder('s')
62 62
                             ->where('s.active = 1');
63 63
                     }, 'choice_label' => 'name', 'multiple' => false, 'placeholder' => 'form.choice_supplier',
64 64
                     'label' => 'title', 'translation_domain' => 'gs_suppliers', 'empty_data' => null,
65
-                    'attr'  => ['class' => 'form-control',],])
65
+                    'attr'  => ['class' => 'form-control', ], ])
66 66
             ->add('unitStorage', EntityType::class, ['class' => 'AppBundle:Settings\Diverse\Unit',
67 67
                 'choice_label' => 'name', 'multiple' => false, 'label' => 'gestock.settings.diverse.unitstorage',
68
-                'attr'  => ['class' => 'form-control',],])
68
+                'attr'  => ['class' => 'form-control', ], ])
69 69
             ->add('unitWorking', EntityType::class, ['class' => 'AppBundle:Settings\Diverse\Unit',
70 70
                 'choice_label' => 'name', 'multiple' => false, 'label' => 'gestock.settings.diverse.unitworking',
71
-                'attr'  => ['class' => 'form-control',],])
71
+                'attr'  => ['class' => 'form-control', ], ])
72 72
             ->add('zoneStorages', EntityType::class, ['class' => 'AppBundle:Settings\Diverse\ZoneStorage',
73 73
                 'choice_label' => 'name', 'multiple' => true, 'expanded' => true,
74
-                'label' => 'gestock.settings.diverse.zonestorage', 'attr'  => ['class' => 'form-control',],])
74
+                'label' => 'gestock.settings.diverse.zonestorage', 'attr'  => ['class' => 'form-control', ], ])
75 75
             ->add('familyLog', EntityType::class, ['class' => 'AppBundle:Settings\Diverse\FamilyLog',
76
-                    'query_builder' => function (EntityRepository $er) {
76
+                    'query_builder' => function(EntityRepository $er) {
77 77
                         return $er->createQueryBuilder('f')
78 78
                             ->orderBy('f.path', 'ASC');
79 79
                     }, 'choice_label' => 'indentedName', 'multiple' => false,
80 80
                     'placeholder' => 'gestock.settings.diverse.choice_family', 'empty_data' => null,
81
-                    'label' => 'gestock.settings.diverse.familylog', 'attr'  => ['class' => 'form-control',],])
81
+                    'label' => 'gestock.settings.diverse.familylog', 'attr'  => ['class' => 'form-control', ], ])
82 82
             ->addEventSubscriber(new AddSaveEditFieldSubscriber())
83 83
         ;
84 84
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     public function configureOptions(OptionsResolver $resolver)
90 90
     {
91
-        $resolver->setDefaults(['data_class' => 'AppBundle\Entity\Settings\Article',]);
91
+        $resolver->setDefaults(['data_class' => 'AppBundle\Entity\Settings\Article', ]);
92 92
     }
93 93
 
94 94
     /**
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/Settings/Diverse/UnitType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $builder
38 38
             ->add('name', TextType::class, ['label' => 'gestock.settings.diverse.unitstorage',
39
-                'attr' => ['class' => 'half',],])
40
-            ->add('abbr', TextType::class, ['label' => 'gestock.abbr', 'attr' => ['class' => 'half',],])
39
+                'attr' => ['class' => 'half', ], ])
40
+            ->add('abbr', TextType::class, ['label' => 'gestock.abbr', 'attr' => ['class' => 'half', ], ])
41 41
             ->addEventSubscriber(new AddSaveEditFieldSubscriber());
42 42
     }
43 43
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function configureOptions(OptionsResolver $resolver)
48 48
     {
49
-        $resolver->setDefaults(['data_class' => 'AppBundle\Entity\Settings\Diverse\Unit',]);
49
+        $resolver->setDefaults(['data_class' => 'AppBundle\Entity\Settings\Diverse\Unit', ]);
50 50
     }
51 51
 
52 52
     /**
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/Settings/Diverse/MaterialType.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -39,17 +39,17 @@  discard block
 block discarded – undo
39 39
     public function buildForm(FormBuilderInterface $builder, array $options)
40 40
     {
41 41
         $builder
42
-            ->add('name', TextType::class, ['label' => 'gestock.name', 'attr'  => ['class' => 'half'],])
42
+            ->add('name', TextType::class, ['label' => 'gestock.name', 'attr'  => ['class' => 'half'], ])
43 43
             ->add('unitWorking', EntityType::class, ['class' => 'AppBundle:Settings\Diverse\Unit',
44 44
                 'choice_label' => 'name', 'multiple' => false, 'label' => 'gestock.settings.diverse.unitworking',
45
-                'attr'  => ['class' => 'half',],])
46
-            ->add('active', CheckboxType::class, ['required' => false, 'label' => 'gestock.actif',])
47
-            ->add('multiple', CheckboxType::class, ['required' => false, 'label' => 'gestock.multiple',])
45
+                'attr'  => ['class' => 'half', ], ])
46
+            ->add('active', CheckboxType::class, ['required' => false, 'label' => 'gestock.actif', ])
47
+            ->add('multiple', CheckboxType::class, ['required' => false, 'label' => 'gestock.multiple', ])
48 48
             ->add('articles', EntityType::class, ['class' => 'AppBundle:Settings\Article',
49
-                    'query_builder' => function (EntityRepository $er) {
49
+                    'query_builder' => function(EntityRepository $er) {
50 50
                         return $er->createQueryBuilder('a')->orderBy('a.name', 'ASC');
51 51
                     }, 'choice_label' => 'name', 'multiple' => true, 'expanded' => true, 'label' => 'title',
52
-                        'translation_domain' => 'gs_articles',])
52
+                        'translation_domain' => 'gs_articles', ])
53 53
             ->addEventSubscriber(new AddSaveEditFieldSubscriber())
54 54
         ;
55 55
         empty($_POST);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     public function configureOptions(OptionsResolver $resolver)
62 62
     {
63 63
         $resolver->setDefaults(
64
-            ['data_class' => 'AppBundle\Entity\Settings\Diverse\Material',]
64
+            ['data_class' => 'AppBundle\Entity\Settings\Diverse\Material', ]
65 65
         );
66 66
     }
67 67
 
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/Orders/InvoicesEditType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      */
44 44
     public function configureOptions(OptionsResolver $resolver)
45 45
     {
46
-        $resolver->setDefaults(['data_class' => 'AppBundle\Entity\Orders\Orders',]);
46
+        $resolver->setDefaults(['data_class' => 'AppBundle\Entity\Orders\Orders', ]);
47 47
     }
48 48
 
49 49
     /**
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/Orders/OrdersArticlesType.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -37,24 +37,24 @@
 block discarded – undo
37 37
         $builder
38 38
             ->add('orders', EntityType::class, ['required' => false, 'class' => 'AppBundle:Orders\Orders',
39 39
                 'choice_label' => 'id', 'label' => 'gestock.id', 'translation_domain' => 'messages',
40
-                'empty_data' => null,])
40
+                'empty_data' => null, ])
41 41
             ->add('article', EntityType::class, ['required' => false, 'class' => 'AppBundle:Settings\Article',
42 42
                 'choice_label' => 'name', 'label' => 'title', 'translation_domain' => 'gs_articles',
43
-                'empty_data' => null,])
43
+                'empty_data' => null, ])
44 44
             ->add('quantity', NumberType::class, ['scale' => 3, 'grouping' => true, 'empty_data' => '0,000',
45 45
                 'label' => 'settings.quantity', 'translation_domain' => 'gs_articles',
46
-                'attr'=> ['class' => 'form-control text-right',],])
46
+                'attr'=> ['class' => 'form-control text-right', ], ])
47 47
             ->add('unitStorage', EntityType::class, ['required' => false, 'class' => 'AppBundle:Settings\Diverse\Unit',
48
-                'choice_label' => 'abbr', 'label' => 'gestock.settings.diverse.unitstorage', 'empty_data' => null,])
48
+                'choice_label' => 'abbr', 'label' => 'gestock.settings.diverse.unitstorage', 'empty_data' => null, ])
49 49
             ->add('price', MoneyType::class, ['required' => false, 'scale' => 3, 'grouping' => true,
50 50
                 'currency' => 'EUR', 'label' => 'settings.price', 'translation_domain' => 'gs_articles',
51
-                'attr'=> ['class' => 'form-control text-right', 'readonly' => true,],])
51
+                'attr'=> ['class' => 'form-control text-right', 'readonly' => true, ], ])
52 52
             ->add('tva', EntityType::class, ['required' => false, 'class' => 'AppBundle:Settings\Diverse\Tva',
53 53
                 'choice_label' => 'name', 'choice_value' => 'rate', 'label' => 'gestock.settings.diverse.vat',
54
-                'empty_data' => null,])
54
+                'empty_data' => null, ])
55 55
             ->add('total', MoneyType::class, ['required' => false, 'scale' => 3, 'grouping' => true,
56 56
                 'currency' => 'EUR', 'label' => 'seizure.total', 'translation_domain' => 'gs_orders',
57
-                'mapped' => false, 'attr'=> ['class' => 'form-control text-right', 'readonly' => true,],])
57
+                'mapped' => false, 'attr'=> ['class' => 'form-control text-right', 'readonly' => true, ], ])
58 58
         ;
59 59
     }
60 60
 
Please login to merge, or discard this patch.