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

View File

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