diff --git a/src/Adapter/Adapter.php b/src/Adapter/Adapter.php index e356ff9a58..2d21772674 100644 --- a/src/Adapter/Adapter.php +++ b/src/Adapter/Adapter.php @@ -234,26 +234,6 @@ public function createStatement($initialSql = null, $initialParameters = null) return $statement; } - public function getHelpers() - { - $functions = []; - $platform = $this->platform; - foreach (func_get_args() as $arg) { - switch ($arg) { - case self::FUNCTION_QUOTE_IDENTIFIER: - $functions[] = function ($value) use ($platform) { - return $platform->quoteIdentifier($value); - }; - break; - case self::FUNCTION_QUOTE_VALUE: - $functions[] = function ($value) use ($platform) { - return $platform->quoteValue($value); - }; - break; - } - } - } - /** * @param $name * @throws Exception\InvalidArgumentException