From 33b1ee129b095b43613d23199c6b05213d1196c6 Mon Sep 17 00:00:00 2001 From: Konstantin Grachev Date: Sat, 23 Jan 2021 03:24:39 +0300 Subject: [PATCH] Mark consumer as final --- src/Consumer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Consumer.php b/src/Consumer.php index 5b0a699..54787e8 100644 --- a/src/Consumer.php +++ b/src/Consumer.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace Nsq; -class Consumer extends Connection +final class Consumer extends Connection { private int $rdy = 0;