Skip to content

Commit 0724ebc

Browse files
authored
Fix undefined variable $filesystem
1 parent b4aa027 commit 0724ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

0 commit comments

Comments
 (0)