diff --git a/Abstracts/BaseProcess.php b/Abstracts/BaseProcess.php index 84a333e..0cb8ddf 100644 --- a/Abstracts/BaseProcess.php +++ b/Abstracts/BaseProcess.php @@ -36,7 +36,7 @@ abstract class BaseProcess implements OnProcessInterface public function getName(): string { if (empty($this->name)) { - return uniqid('p.'); + $this->name = uniqid('p.'); } return $this->name; }