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

Commit 86afa6f

Browse files
committed
minor #225 Minor tweaks for the previous merge (javiereguiluz)
This PR was merged into the 1.0-dev branch. Discussion ---------- Minor tweaks for the previous merge Commits ------- 8503cab Minor tweaks for the previous merge
2 parents 71fe39f + 8503cab commit 86afa6f

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

src/Symfony/Installer/Application.php

+7-9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
/**
1919
* This is main Symfony Installer console application class.
20+
*
21+
* @author Jerzy Zawadzki <[email protected]>
2022
*/
2123
class Application extends ConsoleApplication
2224
{
@@ -28,15 +30,12 @@ public function doRun(InputInterface $input, OutputInterface $output)
2830

2931
if ($this->isInPharMode() && in_array($commandName, array('new', 'demo'), true)) {
3032
if (!$this->checkIfInstallerIsUpdated()) {
31-
$output->writeln(
32-
sprintf(
33-
" <comment>[WARNING]</comment> You are using outdated version of Symfony Installer.\n".
34-
' It is recommended to update it by running "%s selfupdate" to get the latest version.',
35-
$_SERVER['PHP_SELF']
36-
)
37-
);
33+
$output->writeln(sprintf(
34+
" <comment>[WARNING]</comment> Your Symfony Installer version is outdated.\n".
35+
' Execute the command "%s selfupdate" to get the latest version.',
36+
$_SERVER['PHP_SELF']
37+
));
3838
}
39-
4039
}
4140

4241
return parent::doRun($input, $output);
@@ -62,5 +61,4 @@ private function checkIfInstallerIsUpdated()
6261

6362
return false;
6463
}
65-
6664
}

0 commit comments

Comments
 (0)