remove index variable not in use

This commit is contained in:
yggverse 2024-04-03 03:58:29 +03:00
parent 00dddea554
commit be8b86102f

View file

@ -71,7 +71,7 @@ class Body
{ {
$matches = []; $matches = [];
foreach ($this->_lines as $i => $line) foreach ($this->_lines as $line)
{ {
if (preg_match('/^=>(.*)/', trim($line), $match)) if (preg_match('/^=>(.*)/', trim($line), $match))
{ {