akaunting/modules/BC21/Events/Sale/InvoiceReminded.php
2020-12-25 22:30:59 +03:00

20 lines
388 B
PHP

<?php
namespace App\Events\Sale;
use App\Events\Document\DocumentReminded;
use App\Models\Document\Document;
use App\Notifications\Sale\Invoice as Notification;
/**
* @deprecated
* @see DocumentReminded
*/
class InvoiceReminded extends DocumentReminded
{
public function __construct(Document $document)
{
parent::__construct($document, Notification::class);
}
}