refactoring for dependency injection and testability.
This commit is contained in:
14
laravel/database/query/compiler/mysql.php
Normal file
14
laravel/database/query/compiler/mysql.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php namespace Laravel\Database\Query\Compiler;
|
||||
|
||||
use Laravel\Database\Query\Compiler;
|
||||
|
||||
class MySQL extends Compiler {
|
||||
|
||||
/**
|
||||
* Get the keyword identifier wrapper for the connection.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function wrapper() { return '`'; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user