Skip to content

Commit a2d80ca

Browse files
committed
minor symfony#24002 Fix case sensitive typo in use class name (PhilETaylor)
This PR was merged into the 3.3 branch. Discussion ---------- Fix case sensitive typo in use class name closes symfony#24001 Change is simple typo: Parameterbag = ParameterBag | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | License | MIT Fixes this: ` [RuntimeException] An error occurred when executing the "'cache:clear --no-warmup'" command: Fatal error: Uncaught RuntimeException: Case mismatch between loaded and declared class names: "Symfony\Component\DependencyInjection\Parameterbag\EnvPlaceholderParameterBag" v s "Symfony\Component\DependencyInjection\ParameterBag\EnvPlaceholderParameterBag". in /Users/phil/Sites/maintain.myjoomla.com/vendor/symfony/symfony/src/Symfony/Component/Debug /DebugClassLoader.php:165 ` Commits ------- 6fe9072 Fix case sensitive typo in use class name
2 parents 8a38f88 + 6fe9072 commit a2d80ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/DependencyInjection/Compiler/MergeExtensionConfigurationPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\DependencyInjection\Extension\ConfigurationExtensionInterface;
1616
use Symfony\Component\DependencyInjection\Extension\Extension;
1717
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
18-
use Symfony\Component\DependencyInjection\Parameterbag\EnvPlaceholderParameterBag;
18+
use Symfony\Component\DependencyInjection\ParameterBag\EnvPlaceholderParameterBag;
1919

2020
/**
2121
* Merges extension configs into the container builder.

0 commit comments

Comments
 (0)