Skip to content

Commit 95d871a

Browse files
committed
Fix a minor PHP CS Fixer warning in SendSEPADirectDebit.php
It's the last remaining warning across the code base.
1 parent a1806ce commit 95d871a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Fhp/Action/SendSEPADirectDebit.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
use Fhp\Segment\Common\Kti;
1212
use Fhp\Segment\DME\HIDMESv1;
1313
use Fhp\Segment\DME\HIDMESv2;
14+
use Fhp\Segment\DME\HKDMEv2;
1415
use Fhp\Segment\DSE\HIDSESv2;
1516
use Fhp\Segment\DSE\HIDXES;
17+
use Fhp\Segment\DSE\HKDSEv2;
1618
use Fhp\Segment\SPA\HISPAS;
1719
use Fhp\Syntax\Bin;
1820
use Fhp\UnsupportedException;
@@ -159,7 +161,7 @@ protected function createRequest(BPD $bpd, ?UPD $upd)
159161
. implode(', ', $supportedPainNamespaces));
160162
}
161163

162-
/** @var mixed $hkdxe */ // TODO Put a new interface type here.
164+
/** @var HKDMEv2|HKDSEv2|HIDXES $hkdxe */
163165
$hkdxe = $hidxes->createRequestSegment();
164166
$hkdxe->kontoverbindungInternational = Kti::fromAccount($this->account);
165167
$hkdxe->sepaDescriptor = $this->painNamespace;

0 commit comments

Comments
 (0)