fix: Change to catching "Throwable".

This commit is contained in:
yaegassy 2021-04-18 05:15:43 +09:00
parent b404a2706b
commit 5753fef637

View File

@ -34,7 +34,7 @@ class Plugin implements PluginEntryPointInterface
$this->ingestFacadeStubs($registration, $app, $fake_filesystem, $view_factory, $cache_dir);
$this->ingestMetaStubs($registration, $app, $fake_filesystem, $view_factory, $cache_dir);
$this->ingestModelStubs($registration, $app, $fake_filesystem, $cache_dir);
} catch (\Error $e) {
} catch (\Throwable $t) {
return;
}