Files
lgp-admin-plus-api/laravel/database/queries/grammars/mysql.php

12 lines
218 B
PHP
Raw Normal View History

<?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
/**
* Get the keyword identifier wrapper for the connection.
*
* @return string
*/
public function wrapper() { return '`'; }
}