MIF_E31222691/laravel/db/query/compiler/mysql.php

14 lines
245 B
PHP

<?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 '`'; }
}