From a26c2cbcdb345889a57a99983c6b45980241697c Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Tue, 28 Jul 2020 10:46:25 +0200 Subject: [PATCH] :memo: Add phpdoc on DBObjectSearch method --- core/dbobjectsearch.class.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/core/dbobjectsearch.class.php b/core/dbobjectsearch.class.php index ddf88be2a..ed54e4f5a 100644 --- a/core/dbobjectsearch.class.php +++ b/core/dbobjectsearch.class.php @@ -859,10 +859,14 @@ class DBObjectSearch extends DBSearch } /** - * @param DBObjectSearch $oFilter - * @param $sExtKeyAttCode + * Add a link to another filter, using an extkey already present in current filter + * + * @param DBObjectSearch $oFilter filter to join to + * @param string $sExtKeyAttCode extkey present in current filter, that allows to points to $oFilter * @param int $iOperatorCode - * @param null $aRealiasingMap array of => , for each alias that has changed + * @param array $aRealiasingMap array of => , for each alias that has changed. + * Doesn't change existing alias, use {@link \DBObjectSearch::RenameAlias()} for that. + * * @throws CoreException * @throws CoreWarning */