Skip to content

Commit

Permalink
Clean up unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Jul 30, 2021
1 parent 9b8b06e commit bb60891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IO/WKTParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private function scan(string $wkt) : void

preg_match_all($regex, $wkt, $matches, PREG_SET_ORDER);

foreach ($matches as $index => $match) {
foreach ($matches as $match) {
foreach ($match as $key => $value) {
/** @var int $key */

Expand Down

0 comments on commit bb60891

Please sign in to comment.