1
0

Release 0.7.0

Beta Release 0.7.0 including:

- Bug fixes
- Updated model/function names
- Updated models to reflect changes in APIs
This commit is contained in:
Patrick Powers
2025-03-20 13:18:55 -05:00
committed by GitHub
parent bba7e8b3d0
commit 504c367386
707 changed files with 22368 additions and 9237 deletions

View File

@@ -32,7 +32,7 @@ class BlikPaymentObjectBuilder
}
/**
* Initializes a new blik payment object Builder object.
* Initializes a new Blik Payment Object Builder object.
*/
public static function init(): self
{
@@ -41,6 +41,8 @@ class BlikPaymentObjectBuilder
/**
* Sets name field.
*
* @param string|null $value
*/
public function name(?string $value): self
{
@@ -50,6 +52,8 @@ class BlikPaymentObjectBuilder
/**
* Sets country code field.
*
* @param string|null $value
*/
public function countryCode(?string $value): self
{
@@ -59,6 +63,8 @@ class BlikPaymentObjectBuilder
/**
* Sets email field.
*
* @param string|null $value
*/
public function email(?string $value): self
{
@@ -68,6 +74,8 @@ class BlikPaymentObjectBuilder
/**
* Sets one click field.
*
* @param BlikOneClickPaymentObject|null $value
*/
public function oneClick(?BlikOneClickPaymentObject $value): self
{
@@ -76,7 +84,7 @@ class BlikPaymentObjectBuilder
}
/**
* Initializes a new blik payment object object.
* Initializes a new Blik Payment Object object.
*/
public function build(): BlikPaymentObject
{