Passed
Push — master ( 480443...d7d5d4 )
by Jan
07:32 queued 03:08
created
src/Admin/Field/PasswordField.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@
 block discarded – undo
38 38
             ->setTemplateName('crud/field/text')
39 39
             ->setFormTypeOptions([
40 40
                 'type' => PasswordType::class,
41
-                                     'first_options' => [
41
+                                        'first_options' => [
42 42
                                         'label' => 'password.new',
43 43
                                     ],
44
-                                     'second_options' => [
44
+                                        'second_options' => [
45 45
                                         'label' => 'password.repeat',
46 46
                                     ],
47 47
             ]);
Please login to merge, or discard this patch.
src/Services/PaymentOrdersSEPAExporter_old.php 1 patch
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.
src/Services/SEPAExport/SEPAExportGroupAndSplitHelper.php 1 patch
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.