Skip to content
This repository was archived by the owner on Nov 14, 2019. It is now read-only.

Commit b6e7a69

Browse files
committed
Use the same method name as in the NewCommand
1 parent 878931d commit b6e7a69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Installer/AboutCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
8181
$output->writeln(sprintf($commandHelp,
8282
$this->appVersion,
8383
str_repeat('=', 20 + strlen($this->appVersion)),
84-
$this->getInstallerExecutable()
84+
$this->getExecutedCommand()
8585
));
8686
}
8787

@@ -90,7 +90,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
9090
*
9191
* @return string
9292
*/
93-
private function getInstallerExecutable()
93+
private function getExecutedCommand()
9494
{
9595
$executedCommand = $_SERVER['PHP_SELF'];
9696
$executedCommand = preg_replace('~/usr/local/bin/~', '', $executedCommand);

0 commit comments

Comments
 (0)