📝 Some PHPDoc on object archiving

This commit is contained in:
Pierre Goiffon
2019-07-23 18:04:45 +02:00
parent b858ba3786
commit 501c20a34d
2 changed files with 26 additions and 13 deletions

View File

@@ -1424,15 +1424,18 @@ abstract class DBSearch
}
/**
* Experimental!
* @todo implement the change tracking
*
* @internal
* @api
*
* Updates archive_flag and archive_date fields in the whole class hierarchy
*
* @see \DBObject::DBWriteArchiveFlag()
*
* @param boolean $bArchive
*
* @param $bArchive
* @throws Exception
* @todo implement the change tracking
*/
function DBBulkWriteArchiveFlag($bArchive)
public function DBBulkWriteArchiveFlag($bArchive)
{
$sClass = $this->GetClass();
if (!MetaModel::IsArchivable($sClass))