Skip to content

Commit

Permalink
Removed redundant initialization in RequestHeader.php
Browse files Browse the repository at this point in the history
  • Loading branch information
DF-Dave committed Jul 26, 2024
1 parent da9b4e6 commit a4e977d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/SaferpayJson/Request/Container/RequestHeader.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ final class RequestHeader
/**
* @SerializedName("RequestId")
*/
private ?string $requestId = null;
private ?string $requestId;

/**
* @SerializedName("RetryIndicator")
*/
private int $retryIndicator = 0;
private int $retryIndicator;

/**
* @SerializedName("ClientInfo")
Expand Down

0 comments on commit a4e977d

Please sign in to comment.