You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Request (if you add a field here, update __serialize() and __unserialize() as well).
19
20
/** @var string */
20
21
private$directDebitType;
21
-
22
22
/** @var string */
23
23
private$seqType;
24
-
25
24
/** @var bool */
26
25
private$singleDirectDebit;
27
26
@@ -43,6 +42,45 @@ public static function create(string $seqType, bool $singleDirectDebit, string $
43
42
return$result;
44
43
}
45
44
45
+
/**
46
+
* @deprecated Beginning from PHP7.4 __unserialize is used for new generated strings, then this method is only used for previously generated strings - remove after May 2023
* @deprecated Beginning from PHP7.4 __unserialize is used for new generated strings, then this method is only used for previously generated strings - remove after May 2023
Copy file name to clipboardExpand all lines: lib/Fhp/Action/SendInternationalCreditTransfer.php
+40-2Lines changed: 40 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,11 @@
13
13
14
14
class SendInternationalCreditTransfer extends BaseAction
15
15
{
16
+
// Request (if you add a field here, update __serialize() and __unserialize() as well).
16
17
/** @var SEPAAccount */
17
18
protected$account;
18
-
19
19
/** @var string */
20
20
protected$dtavzData;
21
-
22
21
/** @var string|null */
23
22
protected$dtavzVersion;
24
23
@@ -36,6 +35,45 @@ public static function create(SEPAAccount $account, string $dtavzData, ?string $
36
35
return$result;
37
36
}
38
37
38
+
/**
39
+
* @deprecated Beginning from PHP7.4 __unserialize is used for new generated strings, then this method is only used for previously generated strings - remove after May 2023
* @deprecated Beginning from PHP7.4 __unserialize is used for new generated strings, then this method is only used for previously generated strings - remove after May 2023
Copy file name to clipboardExpand all lines: lib/Fhp/Action/SendSEPARealtimeTransfer.php
+42-1Lines changed: 42 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,15 +23,17 @@
23
23
*/
24
24
class SendSEPARealtimeTransfer extends BaseAction
25
25
{
26
+
// Request (if you add a field here, update __serialize() and __unserialize() as well).
26
27
/** @var SEPAAccount */
27
28
private$account;
28
29
/** @var string */
29
30
private$painMessage;
30
31
/** @var string */
31
32
private$xmlSchema;
32
-
33
33
privatebool$allowConversionToSEPATransfer = true;
34
34
35
+
// There are no result fields. This action is simply marked as done to indicate that the transfer was executed.
36
+
35
37
/**
36
38
* @param SEPAAccount $account The account from which the transfer will be sent.
37
39
* @param string $painMessage An XML-formatted ISO 20022 message. You may want to use github.com/nemiah/phpSepaXml
@@ -52,6 +54,45 @@ public static function create(SEPAAccount $account, string $painMessage, bool $a
52
54
return$result;
53
55
}
54
56
57
+
/**
58
+
* @deprecated Beginning from PHP7.4 __unserialize is used for new generated strings, then this method is only used for previously generated strings - remove after May 2023
* @deprecated Beginning from PHP7.4 __unserialize is used for new generated strings, then this method is only used for previously generated strings - remove after May 2023
Copy file name to clipboardExpand all lines: lib/Fhp/Action/SendSEPATransfer.php
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,13 +19,16 @@
19
19
*/
20
20
class SendSEPATransfer extends BaseAction
21
21
{
22
+
// Request (if you add a field here, update __serialize() and __unserialize() as well).
22
23
/** @var SEPAAccount */
23
24
private$account;
24
25
/** @var string */
25
26
private$painMessage;
26
27
/** @var string */
27
28
private$xmlSchema;
28
29
30
+
// There are no result fields. This action is simply marked as done to indicate that the transfer was executed.
31
+
29
32
/**
30
33
* @param SEPAAccount $account The account from which the transfer will be sent.
31
34
* @param string $painMessage An XML-formatted ISO 20022 message. You may want to use github.com/nemiah/phpSepaXml
@@ -44,6 +47,45 @@ public static function create(SEPAAccount $account, string $painMessage): SendSE
44
47
return$result;
45
48
}
46
49
50
+
/**
51
+
* @deprecated Beginning from PHP7.4 __unserialize is used for new generated strings, then this method is only used for previously generated strings - remove after May 2023
* @deprecated Beginning from PHP7.4 __unserialize is used for new generated strings, then this method is only used for previously generated strings - remove after May 2023
0 commit comments