diff --git a/System/Pool/Timeout.php b/System/Pool/Timeout.php index 02a85798..2234a1e0 100644 --- a/System/Pool/Timeout.php +++ b/System/Pool/Timeout.php @@ -60,7 +60,7 @@ trait Timeout protected function pop($channel, $name, $retain_number) { while ($channel->length() > $retain_number) { - [$timer, $connection] = $channel->pop(); + $connection = $channel->pop(); if ($connection) { unset($connection); }