Skip to content

Commit

Permalink
Update to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimehing committed Jul 26, 2024
1 parent 6bc1838 commit 6b76ebb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.1.4] - 2024-07-26

- Remove typed declaration in BaseException class to support merchants with PHP version below 7.4. Typed declaration was released in 7.4.

## [0.1.3] - 2024-07-24

- Adjust building of parameter query due to changes in checkout session endpoints.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.3
0.1.4
2 changes: 1 addition & 1 deletion src/Exceptions/BaseException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class BaseException extends \Exception
{
private $data;
protected array $errors;
protected $errors = [];

public function __construct($data)
{
Expand Down

0 comments on commit 6b76ebb

Please sign in to comment.