refactoring database layer.

This commit is contained in:
Taylor Otwell
2011-09-13 23:04:28 -05:00
parent 277729ed3e
commit 15449c34b1
6 changed files with 4 additions and 109 deletions

View File

@@ -0,0 +1,12 @@
<?php namespace Laravel\Database\Grammars;
class MySQL extends Grammar {
/**
* Get the keyword identifier wrapper for the connection.
*
* @return string
*/
public function wrapper() { return '`'; }
}