From 6fc8e0668d38e4e8f30ff5d3280b01526ad0ed3e Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Thu, 27 Jun 2024 18:26:14 +0200 Subject: [PATCH] Fixes --- src/Ipc/Wrapper.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Ipc/Wrapper.php b/src/Ipc/Wrapper.php index eb244a43b..27b238324 100644 --- a/src/Ipc/Wrapper.php +++ b/src/Ipc/Wrapper.php @@ -121,8 +121,7 @@ final class Wrapper extends ClientAbstract } $ids = []; foreach (get_class_methods($callback) as $method) { - //$id = $this->id++; - $id = $this->id++.'_'.$method; + $id = $this->id++; $this->callbacks[$id] = [$callback, $method]; $ids[$method] = $id; }