From 101ff34beef9b699118e557ecf69ecf9579a869e Mon Sep 17 00:00:00 2001 From: Sebastian Thulin Date: Thu, 21 Nov 2024 09:01:24 +0100 Subject: [PATCH] fix: remove $x var (debugging) --- source/php/BrokenLinkRegistry/Registry/ManageRegistry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/php/BrokenLinkRegistry/Registry/ManageRegistry.php b/source/php/BrokenLinkRegistry/Registry/ManageRegistry.php index eb8068b..9fede57 100644 --- a/source/php/BrokenLinkRegistry/Registry/ManageRegistry.php +++ b/source/php/BrokenLinkRegistry/Registry/ManageRegistry.php @@ -61,7 +61,7 @@ private function updateLink(Link $link): void { $httpCode = $link->classification?->getHttpCode() ?? null; - $x = $this->db->getInstance()->update( + $this->db->getInstance()->update( $this->db->getInstance()->prefix . $this->config->getTableName(), array( 'http_code' => $httpCode,