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