소스 검색

#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;


불러오는 중...
취소
저장