🐛 Add missing function

This commit is contained in:
Eric
2020-02-14 16:19:30 +01:00
parent fe770f36c5
commit f94e86ecea
2 changed files with 11 additions and 0 deletions

View File

@@ -238,6 +238,12 @@ abstract class DBSearch
*/
abstract public function GetClassAlias();
/**
* @return string
* @internal
*/
abstract public function GetFirstJoinedClass();
/**
* Change the class
*

View File

@@ -161,6 +161,11 @@ class DBUnionSearch extends DBSearch
return $this->aSearches;
}
public function GetFirstJoinedClass()
{
return $this->GetClass();
}
/**
* Limited to the selected classes
*/