From 1aa1a175b0da447599e76fc280dfe5d6c9a6d993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Wed, 14 Oct 2020 10:47:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Kafka/Consumer.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Kafka/Consumer.php b/Kafka/Consumer.php index be060370..249ed295 100644 --- a/Kafka/Consumer.php +++ b/Kafka/Consumer.php @@ -32,30 +32,18 @@ class Consumer use \Psr\Log\LoggerAwareTrait; use \Kafka\LoggerTrait; - // {{{ consts - // }}} - // {{{ members - private $isRunning = false; - // }}} - // {{{ functions - // {{{ public function __construct() /** * __construct * * @access public - * @param $hostList - * @param null $timeout */ public function __construct() { } - // }}} - // {{{ public function start() - /** * start consumer * @@ -80,7 +68,4 @@ class Consumer run(); } } - - // }}} - // }}} }