1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/fixtures/SuicidalAutoloader/autoloader.php

36 lines
1.1 KiB
PHP

<?php
use React\Promise\PromiseInterface as ReactPromise;
use Composer\InstalledVersions;
spl_autoload_register(function (string $className) {
$knownBadClasses = [
ReactPromise::class, // amphp/amp
ResourceBundle::class, // symfony/polyfill-php73
Transliterator::class, // symfony/string
InstalledVersions::class, // composer v2
// it's unclear why Psalm tries to autoload parent
'parent',
'PHPUnit\Framework\ArrayAccess',
'PHPUnit\Framework\Countable',
'PHPUnit\Framework\DOMDocument',
'PHPUnit\Framework\DOMElement',
'Stringable',
// https://github.com/symfony/symfony/pull/40203
// these are actually functions, referenced as `if (!function_exists(u::class))`
'Symfony\Component\String\u',
'Symfony\Component\String\b',
'Symfony\Component\String\s',
'Symfony\Component\Translation\t',
];
if (in_array($className, $knownBadClasses)) {
return;
}
$ex = new RuntimeException('Attempted to load ' . $className);
echo $ex->__toString() . "\n\n" . $ex->getTraceAsString() . "\n\n";
exit(70);
});