\Test\Test\Workflow\EventValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Event workflow actions 'Test\Test\Models\Event' => \Test\Test\Workflow\EventAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Event workflow notifiers 'Test\Test\Models\Event' => \Test\Test\Workflow\EventNotifier::class, ]; /** * Register any package workflow validation services. * * @param \Litepie\Contracts\Workflow\Workflow $workflow * * @return void */ public function boot(WorkflowContract $workflow) { parent::registerValidators($workflow); parent::registerActions($workflow); parent::registerNotifiers($workflow); } }