We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d53a45e commit 6cdff1cCopy full SHA for 6cdff1c
bin/gen_callmap.php
@@ -33,12 +33,14 @@
33
34
// Load+normalize hand-written diff maps
35
$customMaps = [
36
- 84 => require __DIR__."/../dictionaries/override/CallMap.php"
+ 84 => require __DIR__."/../dictionaries/override/CallMap.php",
37
];
38
39
$customDiffs = [];
40
foreach (glob(__DIR__."/../dictionaries/override/CallMap_*.php") as $file) {
41
- if (!preg_match('/_(\d+)_delta\.php/', $file, $matches)) continue;
+ if (!preg_match('/_(\d+)_delta\.php/', $file, $matches)) {
42
+ continue;
43
+ }
44
$version = $matches[1];
45
$customDiffs[$version] = normalizeCallMap(require $file);
46
}
0 commit comments