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

14 lines
257 B
PHP
Raw Normal View History

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