From 6498518925a1917c78157010584329d2cf70dbad Mon Sep 17 00:00:00 2001 From: Luis Cordova Date: Wed, 12 Mar 2014 20:16:46 -0500 Subject: [PATCH] prefixed http:// to url output on server:run command in order to make it clickable --- src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php index 1d01e04c12..d2255e50be 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php @@ -90,7 +90,7 @@ EOF ->locateResource(sprintf('@FrameworkBundle/Resources/config/router_%s.php', $env)) ; - $output->writeln(sprintf("Server running on %s\n", $input->getArgument('address'))); + $output->writeln(sprintf("Server running on http://%s\n", $input->getArgument('address'))); $builder = new ProcessBuilder(array(PHP_BINARY, '-S', $input->getArgument('address'), $router)); $builder->setWorkingDirectory($input->getOption('docroot'));