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