Skip to content

Commit f5d7ef2

Browse files
committed
Merge branch '2.3' into 2.6
* 2.3: 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
2 parents 8e90070 + d7e8b0b commit f5d7ef2

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)