Skip to content

Commit c0e2496

Browse files
Merge branch '3.4' into 4.0
* 3.4: [Form] fix tests on old phpunit versions [FrameworkBundle] fix typo in CacheClearCommand bumped Symfony version to 3.4.11 updated VERSION for 3.4.10 updated CHANGELOG for 3.4.10 fixed test
2 parents e37d1e6 + 5e28927 commit c0e2496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/CacheClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
122122
if ('/' === \DIRECTORY_SEPARATOR && $mounts = @file('/proc/mounts')) {
123123
foreach ($mounts as $mount) {
124124
$mount = array_slice(explode(' ', $mount), 1, -3);
125-
if (!\in_array(array_pop($mount), array('vboxfs', 'nfs'))) {
125+
if (!\in_array(array_pop($mount), array('vboxsf', 'nfs'))) {
126126
continue;
127127
}
128128
$mount = implode(' ', $mount).'/';

0 commit comments

Comments
 (0)