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

12 lines
212 B
PHP
Raw Normal View History

2011-09-13 23:04:28 -05:00
<?php namespace Laravel\Database\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 '`'; }
}