Files
spa-api/laravel/database/query/grammars/mysql.php

12 lines
195 B
PHP
Raw Normal View History

2012-01-16 13:59:24 -06:00
<?php namespace Laravel\Database\Query\Grammars;
2011-08-22 21:56:42 -05:00
class MySQL extends Grammar {
2011-08-22 21:56:42 -05:00
/**
2011-09-27 21:10:32 -05:00
* The keyword identifier for the database system.
2011-08-22 21:56:42 -05:00
*
2011-09-27 21:10:32 -05:00
* @var string
2011-08-22 21:56:42 -05:00
*/
2012-01-16 13:59:24 -06:00
protected $wrapper = '`%s`';
2011-08-22 21:56:42 -05:00
}