Feature request
Can phpstan identify autoloading or manual import errors? For example if some php file contains import trying to include/require not existing class in registered autoloader.
When phpstan parses file class it crashes because file contains import from not existing file:
require_once 'not-existing-file.php';