\Bixo\Niche\Workflow\NicheValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Niche workflow actions 'Bixo\Niche\Models\Niche' => \Bixo\Niche\Workflow\NicheAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Niche workflow notifiers 'Bixo\Niche\Models\Niche' => \Bixo\Niche\Workflow\NicheNotifier::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); } }