akaunting/modules/BC21/Events/Sale/InvoiceReminded.php

20 lines
388 B
PHP
Raw Normal View History

2020-12-24 01:28:38 +03:00
<?php
namespace App\Events\Sale;
use App\Events\Document\DocumentReminded;
use App\Models\Document\Document;
use App\Notifications\Sale\Invoice as Notification;
2020-12-24 01:28:38 +03:00
/**
* @deprecated
* @see DocumentReminded
*/
class InvoiceReminded extends DocumentReminded
{
public function __construct(Document $document)
{
parent::__construct($document, Notification::class);
}
2020-12-24 01:28:38 +03:00
}