Skip to content

Commit 6cdff1c

Browse files
committed
cs-fix
1 parent d53a45e commit 6cdff1c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/gen_callmap.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,14 @@
3333

3434
// Load+normalize hand-written diff maps
3535
$customMaps = [
36-
84 => require __DIR__."/../dictionaries/override/CallMap.php"
36+
84 => require __DIR__."/../dictionaries/override/CallMap.php",
3737
];
3838

3939
$customDiffs = [];
4040
foreach (glob(__DIR__."/../dictionaries/override/CallMap_*.php") as $file) {
41-
if (!preg_match('/_(\d+)_delta\.php/', $file, $matches)) continue;
41+
if (!preg_match('/_(\d+)_delta\.php/', $file, $matches)) {
42+
continue;
43+
}
4244
$version = $matches[1];
4345
$customDiffs[$version] = normalizeCallMap(require $file);
4446
}

0 commit comments

Comments
 (0)