_topics[$topic])) { return; } $this->_topics[$topic] = $handler::class; } /** * @param string $topic * @return mixed */ public function getConsumer(string $topic): mixed { return $this->_topics[$topic] ?? null; } }