From 2301b9a479c714ed19aaddcbcd8a96cb764fff29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Wed, 22 Jun 2022 18:55:51 +0800 Subject: [PATCH] modify plugin name --- Abstracts/BaseProcess.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }