Skip to content

Commit f62b050

Browse files
committed
Removed useless strtolower call
1 parent fec2f03 commit f62b050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/DependencyInjection/ContainerBuilder.php

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

776776
/**

0 commit comments

Comments
 (0)