Skip to content

Commit fb413ac

Browse files
bug #53672 [FrameworkBundle] ConfigBuilderCacheWarmer should be non-optional (nicolas-grekas)
This PR was merged into the 6.4 branch. Discussion ---------- [FrameworkBundle] `ConfigBuilderCacheWarmer` should be non-optional | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Fix #53496 | License | MIT Replaces #53512 This became apparent after #50391, where the warmer is run only when compiling the container. Before, it didn't really matter. Commits ------- 8bd2ff8855 [FrameworkBundle] ConfigBuilderCacheWarmer should be non-optional
2 parents 88747da + 386e2fa commit fb413ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CacheWarmer/ConfigBuilderCacheWarmer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@ private function dumpExtension(ExtensionInterface $extension, ConfigBuilderGener
8585

8686
public function isOptional(): bool
8787
{
88-
return true;
88+
return false;
8989
}
9090
}

0 commit comments

Comments
 (0)