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