1
0
Fork 0

Fix variable masking

pull/2015/merge
Jordi Boggiano 2013-06-18 14:33:16 +02:00
parent e64050e91d
commit eb0f35377e
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
/**