mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
7 lines
216 B
PHP
7 lines
216 B
PHP
|
<?php
|
||
|
spl_autoload_register(function (string $className) {
|
||
|
$ex = new RuntimeException('Attempted to load ' . $className);
|
||
|
echo $ex->__toString() . "\n\n" . $ex->getTraceAsString() . "\n\n";
|
||
|
exit(70);
|
||
|
});
|