glob
glob copied to clipboard
Matching a URI doesn't work
Glob::match(
"file:///C:/Users/felix/git/OpenSource/php-language-server/fixtures/format.php",
"C:/Users/felix/git/OpenSource/php-language-server/fixtures/**/*.php"
);
Expected: true (the glob should only be applied on the "path" component of the URI, not the scheme)
Actual: false (since no scheme is defined in the glob pattern)