From be8b86102f443e0a1ae47d21d9c990ba48d1009e Mon Sep 17 00:00:00 2001 From: yggverse Date: Wed, 3 Apr 2024 03:58:29 +0300 Subject: [PATCH] remove index variable not in use --- src/Gemtext/Body.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gemtext/Body.php b/src/Gemtext/Body.php index 2e85bd0..1a2a0b6 100644 --- a/src/Gemtext/Body.php +++ b/src/Gemtext/Body.php @@ -71,7 +71,7 @@ class Body { $matches = []; - foreach ($this->_lines as $i => $line) + foreach ($this->_lines as $line) { if (preg_match('/^=>(.*)/', trim($line), $match)) {