mirror of
https://github.com/danog/jit_bugs.git
synced 2024-11-26 12:04:52 +01:00
17 lines
231 B
PHP
17 lines
231 B
PHP
<?php
|
|
$f = '<?php
|
|
|
|
$vendorDir = dirname(__DIR__);
|
|
|
|
return array(
|
|
';
|
|
|
|
$v = 'a';
|
|
for ($x = 0; $x < 11_000; $x++) {
|
|
$v++;
|
|
$f .= "'$v' => \$vendorDir . '$v',\n";
|
|
}
|
|
|
|
$f .= ");\n";
|
|
|
|
file_put_contents(__DIR__.'/classmap.php', $f); |