\Me\Teszt\Workflow\Table1Validator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Table1 workflow actions 'Me\Teszt\Models\Table1' => \Me\Teszt\Workflow\Table1Action::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Table1 workflow notifiers 'Me\Teszt\Models\Table1' => \Me\Teszt\Workflow\Table1Notifier::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); } }