Passed
Pull Request — master (#158)
by
unknown
04:24
created
config/autoload/global.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     ],
28 28
     'banking' => [
29 29
         'iban' => 'CH2730000001200061375', // QR-IBAN without spaces (eg: CH7030123036078110002)
30
-        'paymentTo' => 'PostFinance AG, 3030 Bern',  // Bank coordinate the payment will be made to, eg: 'Banque Alternative Suisse SA'
30
+        'paymentTo' => 'PostFinance AG, 3030 Bern', // Bank coordinate the payment will be made to, eg: 'Banque Alternative Suisse SA'
31 31
         'paymentFor' => 'Club nautique Ichtus' . PHP_EOL . '2072 St-Blaise', // Name and address of account holder, 2-3 lines separated by \n
32 32
     ],
33 33
     'accounting' => [
Please login to merge, or discard this patch.
server/Application/Api/Field/Query/BankingInfos.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      */
62 62
     protected static function qrBill(User $user, ?Money $amount, string $iban, string $paymentFor, bool $paymentPart): array
63 63
     {
64
-        $resolve = function () use ($user, $amount, $iban, $paymentFor, $paymentPart): ?string {
64
+        $resolve = function () use ($user, $amount, $iban, $paymentFor, $paymentPart) : ?string {
65 65
             global $container;
66 66
 
67 67
             if (!Bvr::isQrIban($iban)) {
Please login to merge, or discard this patch.
server/Application/Service/Exporter/AccountingReport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -346,7 +346,7 @@
 block discarded – undo
346 346
         $this->column = $this->firstDataColumn;
347 347
         foreach ([$accountsColumn1, $accountsColumn2] as $col => $accounts) {
348 348
             // Account.code
349
-            $this->write(mb_strtoupper(_tr('Contrôle')), );
349
+            $this->write(mb_strtoupper(_tr('Contrôle')),);
350 350
             // Account.name
351 351
             $this->write('');
352 352
             // Account.balance
Please login to merge, or discard this patch.