From 47eada3d954607db09f7fb80751848e220a3f3eb Mon Sep 17 00:00:00 2001 From: Locco1 Date: Thu, 21 Sep 2023 11:07:48 +0200 Subject: [PATCH] [master] Fixed typo --- src/Driver/PhpAmqpLib/Channel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Driver/PhpAmqpLib/Channel.php b/src/Driver/PhpAmqpLib/Channel.php index 7e8c416..3cb05a3 100644 --- a/src/Driver/PhpAmqpLib/Channel.php +++ b/src/Driver/PhpAmqpLib/Channel.php @@ -94,7 +94,7 @@ public function getPrefetchCount(): int public function qos(int $size, int $count): void { $this->channel->basic_qos($size, $count, false); - $this->prefechSize = $size; + $this->prefetchSize = $size; $this->prefetchCount = $count; }