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; }