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