From bb9c4ee5c357269531fbbeafdf4609edd78706fc Mon Sep 17 00:00:00 2001 From: Paul Andrieux Date: Mon, 27 Apr 2015 17:32:10 +0200 Subject: [PATCH] Fix typo in variable name | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | ~ | License | MIT | Doc PR | ~ --- 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 392ffee534..554673cb8d 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php @@ -117,7 +117,7 @@ EOF $output->writeln(sprintf("Server running on http://%s\n", $address)); $output->writeln('Quit the server with CONTROL-C.'); - if (null === $builder = $this->createPhpProcessBuilder($output, $adress, $input->getOption('router'), $env)) { + if (null === $builder = $this->createPhpProcessBuilder($output, $address, $input->getOption('router'), $env)) { return 1; }