Skip to content

Commit

Permalink
Remove useless var
Browse files Browse the repository at this point in the history
  • Loading branch information
olaurendeau committed Feb 15, 2016
1 parent 1c29f26 commit 390afb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Command/VhostDefineCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->getVhost($input)
));

$vhostConfiguration = $this->getVhostConfiguration($input, $output);
$vhostConfiguration = $this->getVhostConfiguration($input);
$vhostHandler = $this->getContainer()->get('ola_rabbit_mq_admin_toolkit.handler.vhost');
$creation = !$vhostHandler->exists($vhostConfiguration);

Expand Down Expand Up @@ -78,7 +78,7 @@ private function getVhost(InputInterface $input)
*
* @throws \InvalidArgumentException
*/
private function getVhostConfiguration(InputInterface $input, OutputInterface $output)
private function getVhostConfiguration(InputInterface $input)
{
$vhost = $this->getVhost($input);

Expand Down

0 comments on commit 390afb0

Please sign in to comment.