Browse Source

#8 Prevent syntax error in unpacking nested arrays into loop variables (#9)

tags/v0.8.2
Borewit 6 years ago
committed by it is madness
parent
commit
e462fdef45
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Logchecker.php

+ 1
- 1
src/Logchecker.php View File

@@ -1024,7 +1024,7 @@ class Logchecker {
$MatchedDrives[$i] = ['drives' => [], 'offsets' => []];
}

foreach ($this->AllDrives as [$Drive, $Offset]) {
foreach ($this->AllDrives as list($Drive, $Offset)) {
$Distance = levenshtein($Drive, $DriveName);
if ($Distance < 5) {
$MatchedDrives[$Distance]['drives'][] = $Drive;


Loading…
Cancel
Save