minor #9842 [DependencyInjection] fixed typo (fabpot)

This PR was merged into the 2.3 branch.

Discussion
----------

[DependencyInjection] fixed typo

Commits
-------

408d992 [DependencyInjection] fixed typo
This commit is contained in:
Fabien Potencier 2013-12-23 10:58:14 +01:00
commit 51316223fc

View File

@ -271,7 +271,7 @@ class Container implements IntrospectableContainerInterface
// Attempt to retrieve the service by checking first aliases then
// available services. Service IDs are case insensitive, however since
// this method can be called thousands of times during a request, avoid
// calling strotolower() unless necessary.
// calling strtolower() unless necessary.
foreach (array(false, true) as $strtolower) {
if ($strtolower) {
$id = strtolower($id);