1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00

directory_separator optional wrong

This commit is contained in:
kkmuffme 2024-02-04 11:51:57 +01:00
parent 41ce826f6d
commit ee7187c8d6

View File

@ -1817,7 +1817,13 @@ class Config
public function shortenFileName(string $to): string
{
if (!is_file($to)) {
return preg_replace('/^' . preg_quote($this->base_dir . DIRECTORY_SEPARATOR, '/') . '?/', '', $to, 1);
// if cwd is the root directory it will be just the directory separator - trim it off first
return preg_replace(
'/^' . preg_quote(rtrim($this->base_dir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR, '/') . '/',
'',
$to,
1,
);
}
$from = $this->base_dir;