2011-08-25 22:53:05 -05:00
|
|
|
<?php namespace Laravel\Database\Query\Compiler;
|
2011-08-22 21:56:42 -05:00
|
|
|
|
2011-08-25 22:53:05 -05:00
|
|
|
use Laravel\Database\Query\Compiler;
|
2011-08-22 21:56:42 -05:00
|
|
|
|
|
|
|
|
class MySQL extends Compiler {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the keyword identifier wrapper for the connection.
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function wrapper() { return '`'; }
|
|
|
|
|
|
|
|
|
|
}
|