\Crm\Account\Workflow\UserValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind User workflow actions 'Crm\Account\Models\User' => \Crm\Account\Workflow\UserAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind User workflow notifiers 'Crm\Account\Models\User' => \Crm\Account\Workflow\UserNotifier::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); } }