Fixed typo in method name

This commit is contained in:
Tiago Ribeiro 2014-02-23 16:22:13 +00:00
parent 872647a8b2
commit 01858d3ad1
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());