Passed
Push — master ( 480443...d7d5d4 )
by Jan
07:32 queued 03:08
created
src/Controller/Admin/DepartmentCrudController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         ]);
91 91
 
92 92
         $generateTokenAction = Action::new('generateSkipToken', 'department.action.generate_skip_token', 'fas fa-award')
93
-            ->displayIf(function (Department $paymentOrder) {
93
+            ->displayIf(function(Department $paymentOrder) {
94 94
                 return $this->isGranted('ROLE_EDIT_ORGANISATIONS');
95 95
             })
96 96
             ->setCssClass('btn btn-secondary')
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     {
115 115
         $choices = [];
116 116
         foreach (Department::ALLOWED_TYPES as $type) {
117
-            $choices['department.type.'.$type] = $type;
117
+            $choices['department.type.' . $type] = $type;
118 118
         }
119 119
 
120 120
         return [
Please login to merge, or discard this patch.
src/Controller/PaymentOrderController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
      */
178 178
     public function confirmation(?PaymentOrder $paymentOrder, Request $request, EntityManagerInterface $em): Response
179 179
     {
180
-        if($paymentOrder === null) {
180
+        if ($paymentOrder === null) {
181 181
             $this->addFlash('error', 'payment_order.can_not_be_found');
182 182
             return $this->redirectToRoute('homepage');
183 183
         }
Please login to merge, or discard this patch.
src/Controller/Admin/PaymentOrderCrudController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
             if ($payment_order->getDepartment() !== null && $payment_order->getDepartment()->getBankAccount() !== null) {
121 121
                 //First folder for each bank account
122
-                $prefix = $payment_order->getDepartment()->getBankAccount()->getName() . ' [' . $payment_order->getDepartment()->getBankAccount()->getIban() .']' . '/';
122
+                $prefix = $payment_order->getDepartment()->getBankAccount()->getName() . ' [' . $payment_order->getDepartment()->getBankAccount()->getIban() . ']' . '/';
123 123
 
124 124
                 //A sub folder for each department
125 125
                 $prefix .= $payment_order->getDepartment()->getName() . '/';
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             $project_name = mb_ereg_replace("([^\w\s\d\-_~,;\[\]\(\).])", '', $project_name);
132 132
             $project_name = mb_ereg_replace("([\.]{2,})", '', $project_name);
133 133
             //Format: "ZA000001 Project Name.pdf"
134
-            $filename = $prefix.$payment_order->getIDString().' '.$project_name.'.'.$extension;
134
+            $filename = $prefix . $payment_order->getIDString() . ' ' . $project_name . '.' . $extension;
135 135
 
136 136
             $data[$filename] = $path;
137 137
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 
149 149
         return ZIPBinaryFileResponseFacade::createZIPResponseFromFiles(
150 150
             $data,
151
-            'Belege_'.date('Y-m-d_H-i-s').'.zip');
151
+            'Belege_' . date('Y-m-d_H-i-s') . '.zip');
152 152
     }
153 153
 
154 154
     public function configureCrud(Crud $crud): Crud
@@ -317,32 +317,32 @@  discard block
 block discarded – undo
317 317
         ]);
318 318
 
319 319
         $emailAction = Action::new('sendEmail', 'payment_order.action.email', 'fas fa-envelope')
320
-            ->linkToUrl(function (PaymentOrder $paymentOrder) {
320
+            ->linkToUrl(function(PaymentOrder $paymentOrder) {
321 321
                 return $this->mailToGenerator->generateContactMailLink($paymentOrder);
322 322
             })
323 323
             ->setCssClass('btn btn-secondary text-dark');
324 324
 
325 325
         //Hide action if no contact emails are associated with department
326
-        $emailAction->displayIf(function (PaymentOrder $paymentOrder) {
326
+        $emailAction->displayIf(function(PaymentOrder $paymentOrder) {
327 327
             return null !== $this->mailToGenerator->generateContactMailLink($paymentOrder);
328 328
         });
329 329
 
330 330
         $hhv_action = Action::new('contactHHV', 'payment_order.action.contact_hhv', 'fas fa-comment-dots')
331
-            ->linkToUrl(function (PaymentOrder $paymentOrder) {
331
+            ->linkToUrl(function(PaymentOrder $paymentOrder) {
332 332
                 return $this->mailToGenerator->getHHVMailLink($paymentOrder);
333 333
             })
334 334
             ->setCssClass('btn btn-secondary text-dark');
335 335
 
336 336
         $resend_confirmation_action = Action::new('resendConfirmation', 'payment_order.action.resend_confirmation', 'fas fa-redo')
337 337
             ->linkToCrudAction('resendConfirmationEmail')
338
-            ->displayIf(function (PaymentOrder $paymentOrder) {
338
+            ->displayIf(function(PaymentOrder $paymentOrder) {
339 339
                 return $this->isGranted('ROLE_EDIT_PAYMENT_ORDERS') && !$paymentOrder->isConfirmed();
340 340
             })
341 341
             ->setCssClass('btn btn-secondary text-dark');
342 342
 
343 343
         $mathematically_correct_action = Action::new('mathematicallyCorrect', 'payment_order.action.mathematically_correct', 'fas fa-check')
344 344
             ->linkToCrudAction('checkMathematicallyCorrect')
345
-            ->displayIf(function (PaymentOrder $paymentOrder) {
345
+            ->displayIf(function(PaymentOrder $paymentOrder) {
346 346
                 return $this->isGranted('ROLE_PO_MATHEMATICALLY')
347 347
                     && $paymentOrder->isConfirmed()
348 348
                     && !$paymentOrder->isMathematicallyCorrect();
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
 
352 352
         $factually_correct_action = Action::new('factuallyCorrect', 'payment_order.action.factually_correct', 'fas fa-check')
353 353
             ->linkToCrudAction('checkFactuallyCorrect')
354
-            ->displayIf(function (PaymentOrder $paymentOrder) {
354
+            ->displayIf(function(PaymentOrder $paymentOrder) {
355 355
                 return $this->isGranted('ROLE_PO_FACTUALLY')
356 356
                     && $paymentOrder->isConfirmed()
357 357
                     && !$paymentOrder->isFactuallyCorrect()
@@ -361,12 +361,12 @@  discard block
 block discarded – undo
361 361
 
362 362
         $manual_confirmation = Action::new('manual_confirmation', 'payment_order.action.manual_confirmation', 'fas fa-exclamation-triangle')
363 363
             ->setCssClass('btn btn-secondary')
364
-            ->linkToRoute('payment_order_manual_confirm', function (PaymentOrder $paymentOrder) {
364
+            ->linkToRoute('payment_order_manual_confirm', function(PaymentOrder $paymentOrder) {
365 365
                 return [
366 366
                     'id' => $paymentOrder->getId(),
367 367
                 ];
368 368
             })
369
-            ->displayIf(function (PaymentOrder $paymentOrder) {
369
+            ->displayIf(function(PaymentOrder $paymentOrder) {
370 370
                 return $this->isGranted('ROLE_MANUAL_CONFIRMATION')
371 371
                     && !$paymentOrder->isConfirmed();
372 372
             });
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
 
380 380
         $actions->disable(Crud::PAGE_NEW);
381 381
 
382
-        if(!$this->isGranted('ROLE_EDIT_PAYMENT_ORDERS')) {
382
+        if (!$this->isGranted('ROLE_EDIT_PAYMENT_ORDERS')) {
383 383
             $actions->disable('batchDelete');
384 384
         }
385 385
 
Please login to merge, or discard this patch.
src/Services/Upload/SEPAExportFileNamer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,12 +58,12 @@
 block discarded – undo
58 58
         //TODO: Improve this
59 59
         $filename = sprintf("XML%06d", $object->getId());
60 60
 
61
-        $filename .= '_'.date('ymd-His');
61
+        $filename .= '_' . date('ymd-His');
62 62
 
63
-        $filename .= '_'.bin2hex(random_bytes(5));
63
+        $filename .= '_' . bin2hex(random_bytes(5));
64 64
 
65 65
         //Add original extension
66
-        $filename .= '.'.$originalExtension;
66
+        $filename .= '.' . $originalExtension;
67 67
 
68 68
         return $filename;
69 69
     }
Please login to merge, or discard this patch.
src/Helpers/SEPAXML/SEPAXMLParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         return [
36 36
             'msg_id' => (string) ($group_header->MsgId),
37 37
             'number_of_payments' => (int) ($group_header->NbOfTxs),
38
-            'total_sum' => (int) str_replace('.','',$group_header->CtrlSum),
38
+            'total_sum' => (int) str_replace('.', '', $group_header->CtrlSum),
39 39
             'initiator_iban' => (string) $payment_info->DbtrAcct->Id->IBAN,
40 40
             'initiator_bic' => (string) $payment_info->DbtrAgt->FinInstnId->BIC,
41 41
         ];
Please login to merge, or discard this patch.
src/Helpers/SEPAXML/SEPAXMLExportResult.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         }
45 45
 
46 46
         //Perform some checks on the sepa exports
47
-        foreach($sepa_exports as $sepa_export) {
47
+        foreach ($sepa_exports as $sepa_export) {
48 48
             if (!$sepa_export instanceof SEPAExport) {
49 49
                 throw new \InvalidArgumentException('$sepa_exports must all be of type SEPAExport!');
50 50
             }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      */
152 152
     public function persistSEPAExports(EntityManagerInterface $entityManager): void
153 153
     {
154
-        foreach($this->sepa_exports as $sepa_export) {
154
+        foreach ($this->sepa_exports as $sepa_export) {
155 155
             $entityManager->persist($sepa_export);
156 156
         }
157 157
     }
Please login to merge, or discard this patch.
src/Entity/SEPAExport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
     public function setXmlFile(\Symfony\Component\HttpFoundation\File\File $xml_file): SEPAExport
278 278
     {
279 279
         //Check if $xml_file was changed
280
-        if($this->xml_file === null || $xml_file->getPathname() !== $this->xml_file->getPathname()) {
280
+        if ($this->xml_file === null || $xml_file->getPathname() !== $this->xml_file->getPathname()) {
281 281
             $this->xml_file = $xml_file;
282 282
             $this->updateFromFile();
283 283
         } else {
Please login to merge, or discard this patch.
src/Services/PaymentOrdersSEPAExporter_old.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -216,10 +216,10 @@
 block discarded – undo
216 216
     protected function configureOptions(OptionsResolver $resolver): void
217 217
     {
218 218
         $resolver->setRequired([
219
-                                   'iban', //The IBAN of the sender
220
-                                   'bic', //The BIC of the sender
221
-                                   'name', //The name of the sender
222
-                               ]);
219
+                                    'iban', //The IBAN of the sender
220
+                                    'bic', //The BIC of the sender
221
+                                    'name', //The name of the sender
222
+                                ]);
223 223
 
224 224
         $resolver->setAllowedTypes('iban', ['string', 'null']);
225 225
         $resolver->setAllowedTypes('bic', ['string', 'null']);
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 
93 93
             // A single payment info where all PaymentOrders are added as transactions
94 94
             $payment = new PaymentInformation(
95
-                static::PAYMENT_PREFIX.' '.uniqid('', false),
95
+                static::PAYMENT_PREFIX . ' ' . uniqid('', false),
96 96
                 $account_info['iban'],
97 97
                 $account_info['bic'],
98 98
                 $account_info['name']
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 
145 145
         // A single payment info where all PaymentOrders are added as transactions
146 146
         $payment = new PaymentInformation(
147
-            $paymentOrder->getIDString().' '.uniqid('', false),
147
+            $paymentOrder->getIDString() . ' ' . uniqid('', false),
148 148
             $iban,
149 149
             $bic,
150 150
             $account_name
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     protected function getGroupHeader(): GroupHeader
172 172
     {
173 173
         return new GroupHeader(
174
-            static::ID_PREFIX.' '.uniqid('', false),
174
+            static::ID_PREFIX . ' ' . uniqid('', false),
175 175
             static::PARTY_NAME
176 176
         );
177 177
     }
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      */
183 183
     protected function getPaymentInfoID(PaymentOrder $paymentOrder): string
184 184
     {
185
-        return $paymentOrder->getIDString().' '.uniqid('', false);
185
+        return $paymentOrder->getIDString() . ' ' . uniqid('', false);
186 186
     }
187 187
 
188 188
     /**
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
         $resolver->setDefault('mode', 'manual');
287 287
         $resolver->setAllowedValues('mode', ['auto', 'manual', 'auto_single']);
288 288
 
289
-        $resolver->setNormalizer('iban', function (Options $options, $value) {
289
+        $resolver->setNormalizer('iban', function(Options $options, $value) {
290 290
             if (null === $value) {
291 291
                 return null;
292 292
             }
Please login to merge, or discard this patch.
src/Services/SEPAExport/SEPAExportGroupAndSplitHelper.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
     public function sortPaymentOrderArrayByAmount(array $payment_orders, bool $ascending = true): array
185 185
     {
186 186
         usort($payment_orders, function (PaymentOrder $a, PaymentOrder $b) {
187
-           return $a->getAmount() <=> $b->getAmount();
187
+            return $a->getAmount() <=> $b->getAmount();
188 188
         });
189 189
 
190 190
         if (!$ascending) {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             }
84 84
 
85 85
             //If no array object is existing yet, create the array
86
-            if(!isset($grouped[$bank_account])) {
86
+            if (!isset($grouped[$bank_account])) {
87 87
                 $grouped[$bank_account] = [];
88 88
             }
89 89
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         //Limit the sum amount of each group
129 129
         $groups_exceeding_limit = $tmp;
130 130
         $output = [];
131
-        while(!empty($groups_exceeding_limit)) {
131
+        while (!empty($groups_exceeding_limit)) {
132 132
             foreach ($groups_exceeding_limit as $key => $group) {
133 133
                 /** @var PaymentOrder[] $group */
134 134
                 //If the group does not exceed the limit, then remove it from the bad list and put it to output array
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
                     $part = array_slice($group, 0, $n + 1);
147 147
                     if ($this->calculateSumAmountOfPaymentOrders($part) > $limit_max_amount) {
148 148
                         //If our group contains just a single element which exceed the limit, then throw an exception, as we can not split it further.
149
-                        if(count($part) === 1) {
149
+                        if (count($part) === 1) {
150 150
                             throw new SinglePaymentOrderExceedsLimit($part[0], $limit_max_amount);
151 151
                         }
152 152
 
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
                 }
157 157
 
158 158
                 //Split group into our two subgroups of which at least one is below the limit
159
-                $a = array_slice($group, 0 , $split_index);
159
+                $a = array_slice($group, 0, $split_index);
160 160
                 $b = array_slice($group, $split_index);
161 161
 
162 162
                 //Remove the old group from list and add the new split groups
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      */
194 194
     public function sortPaymentOrderArrayByAmount(array $payment_orders, bool $ascending = true): array
195 195
     {
196
-        usort($payment_orders, function (PaymentOrder $a, PaymentOrder $b) {
196
+        usort($payment_orders, function(PaymentOrder $a, PaymentOrder $b) {
197 197
            return $a->getAmount() <=> $b->getAmount();
198 198
         });
199 199
 
Please login to merge, or discard this patch.