akaunting/modules/BC21/Events/Purchase/BillReminded.php

20 lines
390 B
PHP
Raw Normal View History

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