Code cleanup

- Format code accordingly to coding conventions
- Add / update PHPDoc all over the place
- Suppress most of the warnings that did not have a big impact on code's logic
This commit is contained in:
Molkobain
2019-07-09 19:10:16 +02:00
parent 9e9187b169
commit 030d912820
7 changed files with 145 additions and 21 deletions

View File

@@ -187,6 +187,11 @@ abstract class DBSearch
*/
abstract public function AddCondition_ReferencedBy(DBObjectSearch $oFilter, $sForeignExtKeyAttCode, $iOperatorCode = TREE_OPERATOR_EQUALS, &$aRealiasingMap = null);
/**
* @param \DBSearch $oFilter
*
* @return \DBSearch
*/
abstract public function Intersect(DBSearch $oFilter);
/**