Преглед изворни кода

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

pull/9/head
Borewit пре 6 година
родитељ
комит
ed3b839d00
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/Logchecker.php

+ 1
- 1
src/Logchecker.php Прегледај датотеку

@@ -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…
Откажи
Сачувај