1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-03 10:07:52 +01:00

Merge branch '5.21.x' into 5.x

This commit is contained in:
Bruce Weirdan 2024-02-01 02:06:03 +01:00
commit 00822074fe
No known key found for this signature in database
GPG Key ID: CFC3AAB181751B0D

View File

@ -1067,7 +1067,8 @@ final class Psalm
if ($paths_to_check !== null) {
$filtered_issue_baseline = [];
foreach ($paths_to_check as $path_to_check) {
$path_to_check = substr($path_to_check, strlen($config->base_dir));
// +1 to remove the initial slash from $path_to_check
$path_to_check = substr($path_to_check, strlen($config->base_dir) + 1);
if (isset($issue_baseline[$path_to_check])) {
$filtered_issue_baseline[$path_to_check] = $issue_baseline[$path_to_check];
}