Skip to content

Commit

Permalink
make entities JsonSerializable
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuto2 committed Mar 6, 2023
1 parent 5e00ef7 commit 8f16cab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/AbstractEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

namespace AllDigitalRewards\NeoCurrency;

abstract class AbstractEntity
use JsonSerializable;

abstract class AbstractEntity implements JsonSerializable
{
public function __construct($data = null)
{
Expand Down

0 comments on commit 8f16cab

Please sign in to comment.