Skip to content

Commit c0c1b17

Browse files
Merge branch '5.2' into 5.3
* 5.2: Fix CS in README files Fix markdown [HttpKernel] Fixes tests for PHP7.4+ [Filesystem] fix readlink for Windows
2 parents 482ba74 + 456509a commit c0c1b17

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

HttpCache/Store.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ private function load(string $key): ?string
347347
{
348348
$path = $this->getPath($key);
349349

350-
return is_file($path) && false !== ($contents = file_get_contents($path)) ? $contents : null;
350+
return is_file($path) && false !== ($contents = @file_get_contents($path)) ? $contents : null;
351351
}
352352

353353
/**

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ enough to create full-stack frameworks, micro-frameworks or advanced CMS systems
88
Resources
99
---------
1010

11-
* [Documentation](https://symfony.com/doc/current/components/http_kernel.html)
12-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
13-
* [Report issues](https://github.com/symfony/symfony/issues) and
14-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
15-
in the [main Symfony repository](https://github.com/symfony/symfony)
11+
* [Documentation](https://symfony.com/doc/current/components/http_kernel.html)
12+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
13+
* [Report issues](https://github.com/symfony/symfony/issues) and
14+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
15+
in the [main Symfony repository](https://github.com/symfony/symfony)

0 commit comments

Comments
 (0)