Create CancelStaleWorkflow message and handler

This commit is contained in:
2024-08-08 17:00:27 +02:00
committed by Julien Fastré
parent bf056046ab
commit 860ae5cedf
2 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Chill\MainBundle\Service\Workflow;
class CancelStaleWorkflow
{
public function __construct(public array $workflowIds)
{
}
public function getWorkflowIds(): array
{
return $this->workflowIds;
}
}