8000 bug #54403 [FrameworkBundle] [Command] Fix #54402: Suppress PHP warni… · symfony/symfony@e9a7cb9 · GitHub
[go: up one dir, main page]

Skip to content

Commit e9a7cb9

Browse files
committed
bug #54403 [FrameworkBundle] [Command] Fix #54402: Suppress PHP warning when is_readable() tries to access dirs outside of open_basedir restrictions (Jeldrik Geraedts)
This PR was submitted for the 6.4 branch but it was merged into the 5.4 branch instead. Discussion ---------- [FrameworkBundle] [Command] Fix #54402: Suppress PHP warning when is_readable() tries to access dirs outside of open_basedir restrictions | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Fix #54402 | License | MIT Suppress PHP warning in CacheClearCommand when is_readable() tries to access dirs outside of open_basedir restrictions Commits ------- d2ed4a3 [FrameworkBundle] fixes #54402: Suppress PHP warning when is_readable() tries to access dirs outside of open_basedir restrictions
2 parents 931cb88 + d2ed4a3 commit e9a7cb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ private function isNfs(string $dir): bool
202202

203203
if (null === $mounts) {
204204
$mounts = [];
205-
if ('/' === \DIRECTORY_SEPARATOR && is_readable('/proc/mounts') && $files = @file('/proc/mounts')) {
205+
if ('/' === \DIRECTORY_SEPARATOR && @is_readable('/proc/mounts') && $files = @file('/proc/mounts')) {
206206
foreach ($files as $mount) {
207207
$mount = \array_slice(explode(' ', $mount), 1, -3);
208208
if (!\in_array(array_pop($mount), ['vboxsf', 'nfs'])) {

0 commit comments

Comments
 (0)
0