mysql.php 195 Bytes
Newer Older
1
<?php namespace Laravel\Database\Query\Grammars;
Taylor Otwell committed
2

3
class MySQL extends Grammar {
Taylor Otwell committed
4 5

	/**
Taylor Otwell committed
6
	 * The keyword identifier for the database system.
Taylor Otwell committed
7
	 *
Taylor Otwell committed
8
	 * @var string
Taylor Otwell committed
9
	 */
10
	protected $wrapper = '`%s`';
Taylor Otwell committed
11 12

}