akaunting/app/Events/Document/DocumentRecurring.php

22 lines
414 B
PHP
Raw Normal View History

2020-12-24 01:28:38 +03:00
<?php
namespace App\Events\Document;
use App\Abstracts\Event;
use App\Models\Document\Document;
2020-12-24 01:28:38 +03:00
class DocumentRecurring extends Event
2020-12-24 01:28:38 +03:00
{
public $document;
public $notification;
2020-12-24 01:28:38 +03:00
/**
* Create a new event instance.
*/
public function __construct(Document $document, string $notification)
2020-12-24 01:28:38 +03:00
{
$this->document = $document;
$this->notification = $notification;
2020-12-24 01:28:38 +03:00
}
}