generated from liutk/owl-admin-base
22 lines
450 B
PHP
22 lines
450 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\WorkflowLog;
|
|
use Illuminate\Contracts\Events\ShouldDispatchAfterCommit;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class WorkflowCheckNext implements ShouldDispatchAfterCommit
|
|
{
|
|
use Dispatchable, SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(
|
|
public WorkflowLog $workflowLog,
|
|
) {
|
|
}
|
|
}
|