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:
parent
41ce826f6d
commit
ee7187c8d6
@ -1817,7 +1817,13 @@ class Config
|
|||||||
public function shortenFileName(string $to): string
|
public function shortenFileName(string $to): string
|
||||||
{
|
{
|
||||||
if (!is_file($to)) {
|
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;
|
$from = $this->base_dir;
|
||||||
|
Loading…
Reference in New Issue
Block a user