Skip to content

Commit 6d5d9d7

Browse files
committed
Merge branch '2.6' into 2.7
* 2.6: [Translator] Cache does not take fallback locales into consideration [VarDumper] Fix call site detection [Process] Fix volatile test Remove some useless @group annotations Removed useless strtolower call [Validator] Use strict comparisons in loaders CS: Use "self" keyword instead of class name if possible Conflicts: .travis.yml src/Symfony/Component/Translation/Translator.php
2 parents b9008df + f5d7ef2 commit 6d5d9d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ContainerBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ public function getAlias($id)
768768
*/
769769
public function register($id, $class = null)
770770
{
771-
return $this->setDefinition(strtolower($id), new Definition($class));
771+
return $this->setDefinition($id, new Definition($class));
772772
}
773773

774774
/**

0 commit comments

Comments
 (0)