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

14 lines
245 B
PHP
Raw Normal View History

2011-08-22 21:56:42 -05:00
<?php namespace Laravel\DB\Query\Compiler;
use Laravel\DB\Query\Compiler;
class MySQL extends Compiler {
/**
* Get the keyword identifier wrapper for the connection.
*
* @return string
*/
public function wrapper() { return '`'; }
}