minor #10315 Fix typo in method name (fixe)

This PR was merged into the 2.5-dev branch.

Discussion
----------

Fix typo in method name

Commits
-------

01858d3 Fixed typo in method name
This commit is contained in:
Fabien Potencier 2014-02-24 17:03:19 +01:00
commit 537f1fafbf
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ class AbstractConfigCommand extends ContainerDebugCommand
$table->render($output);
}
protected function findExtention($name)
protected function findExtension($name)
{
$extension = null;

View File

@ -64,7 +64,7 @@ EOF
return;
}
$extension = $this->findExtention($name);
$extension = $this->findExtension($name);
$kernel = $this->getContainer()->get('kernel');
$method = new \ReflectionMethod($kernel, 'buildContainer');

View File

@ -73,7 +73,7 @@ EOF
return;
}
$extension = $this->findExtention($name);
$extension = $this->findExtension($name);
$configuration = $extension->getConfiguration(array(), $this->getContainerBuilder());