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