1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00

Add slashes

This commit is contained in:
Matthew Brown 2020-03-19 16:35:04 -04:00
parent 4e07dfebaa
commit fa2adfe1b3

View File

@ -163,6 +163,6 @@ class IssueData
{
$class = 'Psalm\\Issue\\' . $this->type;
return 'https://psalm.dev/' . str_pad((string) $class::SHORTCODE, 3, "0", STR_PAD_LEFT);
return 'https://psalm.dev/' . \str_pad((string) $class::SHORTCODE, 3, "0", \STR_PAD_LEFT);
}
}