Skip to content

Commit

Permalink
Removed useless strtolower call
Browse files Browse the repository at this point in the history
  • Loading branch information
dosten committed Apr 4, 2015
1 parent fec2f03 commit f62b050
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,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 f62b050

Please sign in to comment.