improve hooking capabilities when sending documents

This commit is contained in:
Hendrik Hagendorn
2023-02-26 18:00:29 +01:00
parent 8a5eeea642
commit d18c3b4121
4 changed files with 59 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Events\Document;
use App\Abstracts\Event;
class DocumentSending extends Event
{
public $document;
/**
* Create a new event instance.
*
* @param $document
*/
public function __construct($document)
{
$this->document = $document;
}
}