mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-12-02 17:48:27 +01:00
15 lines
355 B
PHP
15 lines
355 B
PHP
<?php
|
|
namespace Psalm\LaravelPlugin;
|
|
|
|
class FakeMetaCommand extends \Barryvdh\LaravelIdeHelper\Console\MetaCommand
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
protected function registerClassAutoloadExceptions() {
|
|
spl_autoload_register(function ($class) {
|
|
throw new \ReflectionException("Class '$class' not found.");
|
|
});
|
|
}
|
|
}
|