14 lines
245 B
PHP
14 lines
245 B
PHP
|
|
<?php namespace Laravel\DB\Query\Compiler;
|
||
|
|
|
||
|
|
use Laravel\DB\Query\Compiler;
|
||
|
|
|
||
|
|
class MySQL extends Compiler {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get the keyword identifier wrapper for the connection.
|
||
|
|
*
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function wrapper() { return '`'; }
|
||
|
|
|
||
|
|
}
|