Skip to content

Commit

Permalink
use static:: as it is an abstract class
Browse files Browse the repository at this point in the history
  • Loading branch information
omogenot authored Nov 17, 2024
1 parent 4de2b81 commit f62f372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/db/DoliDB.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,6 @@ public function getRows($sql)
*/
static public function checkTableName($table_name)
{
return DoliDB::$_deprecated_table_names[$table_name] ?? $table_name;
return static::$_deprecated_table_names[$table_name] ?? $table_name;
}
}

0 comments on commit f62f372

Please sign in to comment.