Skip to content

Commit

Permalink
Merge pull request #287 from Xesau/patch-1
Browse files Browse the repository at this point in the history
Use Synchronizable in Receipt
  • Loading branch information
stephangroen authored Nov 2, 2023
2 parents b2ffa6c + eaf85dc commit f3a1125
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Picqer/Financials/Moneybird/Entities/Receipt.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Picqer\Financials\Moneybird\Actions\Noteable;
use Picqer\Financials\Moneybird\Actions\Removable;
use Picqer\Financials\Moneybird\Actions\Storable;
use Picqer\Financials\Moneybird\Actions\Synchronizable;
use Picqer\Financials\Moneybird\Exceptions\ApiException;
use Picqer\Financials\Moneybird\Model;

Expand All @@ -16,7 +17,7 @@
*/
class Receipt extends Model
{
use FindAll, FindOne, Storable, Removable, Attachment, Noteable;
use FindAll, FindOne, Storable, Removable, Attachment, Noteable, Synchronizable;

/**
* @var array
Expand Down Expand Up @@ -46,6 +47,7 @@ class Receipt extends Model
'payments',
'notes',
'attachments',
'version',
];

/**
Expand Down

0 comments on commit f3a1125

Please sign in to comment.