Skip to content

Commit 2785d41

Browse files
committed
Removed standing orders and dated transfers from the request command as they are not supported by some account types
1 parent d8e7961 commit 2785d41

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/AqBanking/Command/RequestCommand.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ private function getShellCommand(\DateTime $fromDate = null)
7575
. " --ctxfile=" . escapeshellcmd($this->contextFile->getPath())
7676
. " --transactions"
7777
. " --balance"
78-
. " --sto" // standing orders
79-
. " --dated" // dated transfers
78+
// TODO: Standing orders and dated transfers are not supported by some account types
79+
//. " --sto" // standing orders
80+
//. " --dated" // dated transfers
8081
;
8182

8283
if (null !== $fromDate) {

0 commit comments

Comments
 (0)