Fix variable masking

main
Jordi Boggiano 11 years ago
parent e64050e91d
commit eb0f35377e

@ -144,7 +144,7 @@ class Application extends BaseApplication
/**
* {@inheritDoc}
*/
public function renderException($e, $output)
public function renderException($exception, $output)
{
try {
$composer = $this->getComposer(false);
@ -160,7 +160,7 @@ class Application extends BaseApplication
}
} catch (\Exception $e) {}
return parent::renderException($e, $output);
return parent::renderException($exception, $output);
}
/**

Loading…
Cancel
Save