Make root namespace explicit

This commit is contained in:
Jakub Vrana
2025-03-05 14:25:09 +01:00
parent c10b614ee1
commit f468c095ae
5 changed files with 5 additions and 5 deletions

View File

@@ -132,7 +132,7 @@ if (isset($_GET["pgsql"])) {
function fetch_field() {
$column = $this->_offset++;
$return = new stdClass;
$return = new \stdClass;
if (function_exists('pg_field_table')) {
$return->orgtable = pg_field_table($this->_result, $column);
}