\Lol\Lol2345\Workflow\GroupValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Group workflow actions 'Lol\Lol2345\Models\Group' => \Lol\Lol2345\Workflow\GroupAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Group workflow notifiers 'Lol\Lol2345\Models\Group' => \Lol\Lol2345\Workflow\GroupNotifier::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); } }