Passed
Push — master ( 1671cd...77a97a )
by Jan
04:04
created
src/Admin/Filter/ULIDFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $value = $filterDataDto->getValue();
60 60
 
61 61
         //Only apply filter if provided string is a valid ULID, otherwise we run into an exception
62
-        if(Ulid::isValid($value)) {
62
+        if (Ulid::isValid($value)) {
63 63
             $queryBuilder->andWhere(sprintf('%s.%s = :%s', $alias, $property, $parameterName))
64 64
                 ->setParameter($parameterName, Ulid::fromString($value), 'ulid');
65 65
         } else { //Otherwise just ensure no results are returned using an impossible SQL statement
Please login to merge, or discard this patch.
src/Controller/Admin/SEPAExportCrudController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $xml_file = VichyFileField::new('xml_file', 'sepa_export.xml_file');
79 79
         $id = IdField::new('id', 'sepa_export.id');
80 80
         $number_of_payments = NumberField::new('number_of_payments', 'sepa_export.number_of_payments')
81
-            ->setHelp('sepa_export.number_of_payments.help');;
81
+            ->setHelp('sepa_export.number_of_payments.help'); ;
82 82
         $initiator_bic = TextField::new('initiator_bic', 'sepa_export.initiator_bic')
83 83
             ->setHelp('sepa_export.initiator_bic.help');
84 84
         $initiator_iban = TextField::new('initiator_iban', 'sepa_export.initiator_iban')
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $total_sum = MoneyField::new('total_sum', 'sepa_export.total_sum')
88 88
             ->setCurrency('EUR')
89 89
             ->setStoredAsCents(true)
90
-            ->setHelp('sepa_export.total_sum.help');;
90
+            ->setHelp('sepa_export.total_sum.help'); ;
91 91
         $sepa_message_id = TextField::new('sepa_message_id', 'sepa_export.message_id')
92 92
             ->setHelp('sepa_export.message_id.help');
93 93
         $description = TextField::new('description', 'sepa_export.description');
Please login to merge, or discard this patch.