Fix on schema grammar constructor

This commit is contained in:
Cooperl Arc Atlantique 2017-06-30 09:07:15 +02:00 committed by Maxime Rault
parent 0b0a2a5201
commit 3ea1576fb0
1 changed files with 0 additions and 11 deletions

View File

@ -10,7 +10,6 @@ use Illuminate\Database\Schema\Blueprint;
class DB2Grammar extends Grammar
{
private $dbType;
/**
* The possible column modifiers.
*
@ -37,16 +36,6 @@ class DB2Grammar extends Grammar
'bigInteger',
];
/**
* DB2Grammar constructor.
*
* @param $dbType
*/
public function __construct($dbType)
{
$this->dbType = $dbType;
}
/**
* Wrap a single string in keyword identifiers.
*