2011-09-13 23:04:28 -05:00
|
|
|
<?php namespace Laravel\Database\Grammars;
|
2011-08-22 21:56:42 -05:00
|
|
|
|
2011-09-12 23:14:24 -05:00
|
|
|
class MySQL extends Grammar {
|
2011-08-22 21:56:42 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the keyword identifier wrapper for the connection.
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function wrapper() { return '`'; }
|
|
|
|
|
|
|
|
|
|
}
|