mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
f59585dd62
* Update client paid to date job: * Backup Invoice HTML when invoice is marked as sent and paid * Store HTML of invoice when invoice was paid * Fix foreign keys in db schema * V2 Endpoints for Company Migrations * Fixes for tests
39 lines
693 B
PHP
39 lines
693 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Events\Invoice;
|
|
|
|
use App\Models\Invoice;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class InvoiceWasPaid.
|
|
*/
|
|
class InvoiceWasPaid
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Invoice
|
|
*/
|
|
public $invoice;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Invoice $invoice
|
|
*/
|
|
public function __construct(Invoice $invoice)
|
|
{
|
|
$this->invoice = $invoice;
|
|
}
|
|
}
|