Files
spa-api/laravel/db/query/mysql.php

16 lines
266 B
PHP
Raw Normal View History

2011-08-19 21:18:59 -05:00
<?php namespace Laravel\DB\Query;
2011-08-19 20:12:39 -05:00
2011-08-19 21:18:59 -05:00
use Laravel\DB\Query;
2011-08-19 20:12:39 -05:00
2011-08-19 21:18:59 -05:00
class MySQL extends Query {
2011-08-19 20:12:39 -05:00
/**
* Get the keyword identifier wrapper for the connection.
*
* MySQL uses a non-standard wrapper
*
* @return string
*/
public function wrapper() { return '`'; }
}