Skip to content

Commit 4d5890b

Browse files
committed
Merge branch '3.2' into 3.3
* 3.2: fixed tests swiftmailer bridge is gone [TwigBundle] add back exception check Dont call count on non countable object Fix undefined variable $filesystem
2 parents 673523a + a2df0ee commit 4d5890b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/AssetsInstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
158158
// remove the assets of the bundles that no longer exist
159159
foreach (new \FilesystemIterator($bundlesDir) as $dir) {
160160
if (!in_array($dir, $validAssetDirs)) {
161-
$filesystem->remove($dir);
161+
$this->filesystem->remove($dir);
162162
}
163163
}
164164

0 commit comments

Comments
 (0)