Skip to content

Commit

Permalink
Update Config.php
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed May 3, 2024
1 parent 24649f0 commit 8251663
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ final class Config extends GatewayConfig implements JsonSerializable {
*
* @var int
*/
public $post_id;
public $post_id = 0;

/**
* API URL.
Expand All @@ -40,35 +40,35 @@ final class Config extends GatewayConfig implements JsonSerializable {
*
* @var string
*/
public $refresh_token;
public $refresh_token = '';

/**
* Signing key.
*
* @var string
*/
public $signing_key;
public $signing_key = '';

/**
* Access token.
*
* @var string
*/
public $access_token;
public $access_token = '';

/**
* Access token valid until.
*
* @var string
*/
public $access_token_valid_until;
public $access_token_valid_until = '';

/**
* Order ID.
*
* @var string
*/
public $order_id;
public $order_id = '';

/**
* Construct config.
Expand Down

0 comments on commit 8251663

Please sign in to comment.