Skip to content

Commit

Permalink
minor #14485 [FrameworkBundle] Fix typo in variable name (paulandrieux)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.6 branch.

Discussion
----------

[FrameworkBundle] 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        | ~

This come from 3928ed5#diff-20b057eaf0a977f7a2ef2b874307279aR120

Commits
-------

bb9c4ee Fix typo in variable name
  • Loading branch information
nicolas-grekas committed Apr 27, 2015
2 parents 343d282 + bb9c4ee commit bee2ada
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -117,7 +117,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln(sprintf("Server running on <info>http://%s</info>\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;
}

Expand Down

0 comments on commit bee2ada

Please sign in to comment.