- Forgot to set escapeIdentifier as static
This commit is contained in:
parent
9503b24467
commit
18313fd7f5
|
@ -203,8 +203,8 @@ class MsSQL implements AdapterInterface, MigrateInterface, SqlAdapterInterface {
|
||||||
$this->traceOn = $configuration['trace_on'];
|
$this->traceOn = $configuration['trace_on'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function escapeIdentifier(string $segment, int $type) : string
|
public static function escapeIdentifier(string $segment, int $type) : string
|
||||||
{
|
{
|
||||||
switch($type) {
|
switch($type) {
|
||||||
case static::IDENTIFIER_SCHEMA:
|
case static::IDENTIFIER_SCHEMA:
|
||||||
|
|
Loading…
Reference in New Issue