fixed wrapper method on mysql query driver.

This commit is contained in:
Taylor Otwell
2011-08-19 22:10:17 -05:00
parent 8f4bcd4675
commit a940fc4867

View File

@@ -11,6 +11,9 @@ class MySQL extends Query {
* *
* @return string * @return string
*/ */
public function wrapper() { return '`'; } public function wrapper()
{
return '`';
}
} }