Skip to content

Commit d02450c

Browse files
committed
remove unused
1 parent da57817 commit d02450c

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

lib/Adapter/PgsqlAdapter.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,6 @@ public function set_encoding(string $charset): void
150150
$this->query("SET NAMES '$charset'");
151151
}
152152

153-
public function quote_table_name(string $table): string
154-
{
155-
return $table;
156-
}
157-
158153
public function guard_name(string $string): string
159154
{
160155
return strpos($string, '-') ? $this->quote_name($string) : $string;

lib/Connection.php

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -307,16 +307,6 @@ public function columns(string $table): array
307307
return $columns;
308308
}
309309

310-
public function quote_table_name(string $table): string
311-
{
312-
return $this->quote_name($table);
313-
}
314-
315-
public function quote_table_name_for_from(string $table): string
316-
{
317-
return $table;
318-
}
319-
320310
/**
321311
* Escapes quotes in a string.
322312
*
@@ -392,10 +382,6 @@ public function query(string $sql, array &$values = [])
392382
throw new DatabaseException($msg . ': ' . $e->getMessage());
393383
}
394384

395-
ob_start();
396-
$sth->debugDumpParams();
397-
$info = ob_get_clean();
398-
399385
return $sth;
400386
}
401387

0 commit comments

Comments
 (0)