1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

fixed exception message (#4692)

This commit is contained in:
Markus Staab 2020-11-24 22:04:34 +01:00 committed by Daniil Gentili
parent b5483b42cf
commit 526319dc47
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -1826,7 +1826,7 @@ class Config
$ext_ds_path = dirname(__DIR__, 2) . '/stubs/ext-ds.php';
if (!file_exists($ext_ds_path)) {
throw new \UnexpectedValueException('Cannot locate core generic classes');
throw new \UnexpectedValueException('Cannot locate ext-ds classes');
}
$core_generic_files[] = $ext_ds_path;