12 lines
186 B
PHP
12 lines
186 B
PHP
<?php namespace Laravel\Database\Grammars;
|
|
|
|
class MySQL extends Grammar {
|
|
|
|
/**
|
|
* The keyword identifier for the database system.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $wrapper = '`';
|
|
|
|
} |