Skip to content

Commit 6f7c694

Browse files
shudefabpot
authored andcommitted
Fix missed argument in BundlesConfigurator::unconfigure()
1 parent 1c48a5e commit 6f7c694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Configurator/BundlesConfigurator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function unconfigure(Recipe $recipe, $bundles): void
4747
}
4848

4949
$registered = $this->load($file);
50-
foreach (array_keys($this->parse($bundles)) as $class) {
50+
foreach (array_keys($this->parse($bundles, [])) as $class) {
5151
unset($registered[$class]);
5252
}
5353
$this->dump($file, $registered);

0 commit comments

Comments
 (0)