From 18313fd7f5c11eb018418764bfada2e3f94b947f Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll <dave.mcnicoll@cslsj.qc.ca> Date: Mon, 14 Oct 2024 14:43:03 +0000 Subject: [PATCH] - Forgot to set escapeIdentifier as static --- src/Adapter/MsSQL.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Adapter/MsSQL.php b/src/Adapter/MsSQL.php index 7e1ae5f..7b161df 100644 --- a/src/Adapter/MsSQL.php +++ b/src/Adapter/MsSQL.php @@ -203,8 +203,8 @@ class MsSQL implements AdapterInterface, MigrateInterface, SqlAdapterInterface { $this->traceOn = $configuration['trace_on']; } } - - public function escapeIdentifier(string $segment, int $type) : string + + public static function escapeIdentifier(string $segment, int $type) : string { switch($type) { case static::IDENTIFIER_SCHEMA: