1
0
mirror of synced 2024-12-13 22:56:04 +03:00

Added toString method to avoid some errors

This commit is contained in:
jackbravo 2007-08-28 19:51:06 +00:00
parent bd61271579
commit 1c24964490

View File

@ -94,4 +94,9 @@ class Doctrine_Expression
return $this->_expression;
}
public function __toString()
{
return $this->getSql();
}
}