Some cleaning up

This commit is contained in:
Michael
2019-05-06 18:46:30 +00:00
parent 37f9af2f24
commit 626709159f
2 changed files with 13 additions and 8 deletions
+4 -3
View File
@@ -125,13 +125,14 @@ class Contact extends BaseObject
}
/**
* @param integer $id
* @param integer $id Contact ID
* @param array $fields Array of selected fields, empty for all
* @return array|boolean Contact record if it exists, false otherwise
* @throws \Exception
*/
public static function getById($id)
public static function getById($id, $fields = [])
{
return DBA::selectFirst('contact', [], ['id' => $id]);
return DBA::selectFirst('contact', $fields, ['id' => $id]);
}
/**