Skip to content

Commit

Permalink
Merge branch '2.3' into 2.6
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
fabpot committed Apr 8, 2015
2 parents 8e90070 + d7e8b0b commit f5d7ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ContainerBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ public function getAlias($id)
*/
public function register($id, $class = null)
{
return $this->setDefinition(strtolower($id), new Definition($class));
return $this->setDefinition($id, new Definition($class));
}

/**
Expand Down

0 comments on commit f5d7ef2

Please sign in to comment.