\College\Circular\Workflow\CircularValidator::class, ]; /** * The actions mappings for the package. * * @var array */ protected $actions = [ // Bind Circular actions \College\Circular\Models\Circular::class => \College\Circular\Workflow\CircularAction::class, ]; /** * The notifiers mappings for the package. * * @var array */ protected $notifiers = [ // Bind Circular notifiers \College\Circular\Models\Circular::class => \College\Circular\Workflow\CircularNotifier::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); } }