\Muku\USphone\Workflow\Phone3Validator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Phone3 actions \Muku\USphone\Models\Phone3::class => \Muku\USphone\Workflow\Phone3Action::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Phone3 notifiers \Muku\USphone\Models\Phone3::class => \Muku\USphone\Workflow\Phone3Notifier::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); } }