Skip to content

Commit 5c61527

Browse files
Merge branch '6.4' into 7.1
* 6.4: initialize RedisAdapter cursor to 0 do not skip tests from data providers ensure compatibility with Twig 3.15 [Mime] fix encoding issue with UTF-8 addresses containing doubles spaces fix translation file syntax [Notifier] Improve Telegrams markdown escaping [Validator] [Choice] Fix callback option if not array returned [DependencyInjection] Fix linting factories implemented via __callStatic [DependencyInjection] Fix replacing abstract arguments with bindings Minor fixes around parse_url() checks Ensure compatibility with mongodb v2 Add missing translations for Turkish (tr)
2 parents 8b847d2 + 5ed4195 commit 5c61527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FileLocator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ private function isAbsolutePath(string $file): bool
8686
&& ':' === $file[1]
8787
&& ('\\' === $file[2] || '/' === $file[2])
8888
)
89-
|| null !== parse_url($file, \PHP_URL_SCHEME)
89+
|| parse_url($file, \PHP_URL_SCHEME)
9090
) {
9191
return true;
9292
}

0 commit comments

Comments
 (0)