2022-03-09 08:40:45 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-03-09 08:40:45 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\DataMapper\Transactions;
|
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
use App\Models\Client;
|
|
|
|
use App\Models\Credit;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Models\TransactionEvent;
|
|
|
|
|
2022-03-09 08:40:45 +01:00
|
|
|
/**
|
2022-03-10 01:32:04 +01:00
|
|
|
* BaseTransaction.
|
2022-03-09 08:40:45 +01:00
|
|
|
*/
|
2022-03-10 01:32:04 +01:00
|
|
|
class MarkPaidTransaction extends BaseTransaction implements TransactionInterface
|
2022-03-09 08:40:45 +01:00
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
public $event_id = TransactionEvent::INVOICE_MARK_PAID;
|
2022-03-09 08:40:45 +01:00
|
|
|
}
|