Skip to content

Commit 01858d3

Browse files
author
Tiago Ribeiro
committed
Fixed typo in method name
1 parent 872647a commit 01858d3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/AbstractConfigCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protected function listBundles(OutputInterface $output)
3838
$table->render($output);
3939
}
4040

41-
protected function findExtention($name)
41+
protected function findExtension($name)
4242
{
4343
$extension = null;
4444

src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
6464
return;
6565
}
6666

67-
$extension = $this->findExtention($name);
67+
$extension = $this->findExtension($name);
6868

6969
$kernel = $this->getContainer()->get('kernel');
7070
$method = new \ReflectionMethod($kernel, 'buildContainer');

src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpReferenceCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
7373
return;
7474
}
7575

76-
$extension = $this->findExtention($name);
76+
$extension = $this->findExtension($name);
7777

7878
$configuration = $extension->getConfiguration(array(), $this->getContainerBuilder());
7979

0 commit comments

Comments
 (0)