Commit f6fa905e authored by doctrine's avatar doctrine

[amadeus] changed exception name ($e) to not conflict with existing var of...

[amadeus] changed exception name ($e) to not conflict with existing var of that name. Also minor spelling error.
parent 50cced9e
...@@ -91,8 +91,8 @@ class Doctrine_RawSql extends Doctrine_Hydrate { ...@@ -91,8 +91,8 @@ class Doctrine_RawSql extends Doctrine_Hydrate {
if( ! isset($this->tables[$e[0]])) { if( ! isset($this->tables[$e[0]])) {
try { try {
$this->addComponent($e[0], ucwords($e[0])); $this->addComponent($e[0], ucwords($e[0]));
} catch(Doctrine_Exception $e) { } catch(Doctrine_Exception $exception) {
throw new Doctrine_Exception("The associated component for tablealias $e[0] couldn't be found."); throw new Doctrine_Exception("The associated component for table alias $e[0] couldn't be found.");
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment