mirror of
https://github.com/friendica/friendica
synced 2024-11-20 07:03:41 +00:00
Type hints, corrected wrong documentation
This commit is contained in:
parent
481376dd6f
commit
438394bc1d
2 changed files with 4 additions and 4 deletions
|
@ -420,7 +420,7 @@ class PostUpdate
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Set the delivery queue count to a negative value for all items preceding the feature.
|
* Remove contact duplicates
|
||||||
*
|
*
|
||||||
* @return bool "true" when the job is done
|
* @return bool "true" when the job is done
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
|
|
|
@ -146,7 +146,7 @@ class Contact extends BaseObject
|
||||||
* @return boolean was the insert successful?
|
* @return boolean was the insert successful?
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public static function insert($param, $on_duplicate_update = false)
|
public static function insert(array $param, bool $on_duplicate_update = false)
|
||||||
{
|
{
|
||||||
$ret = DBA::insert('contact', $param, $on_duplicate_update);
|
$ret = DBA::insert('contact', $param, $on_duplicate_update);
|
||||||
$contact = DBA::selectFirst('contact', ['nurl', 'uid'], ['id' => DBA::lastInsertId()]);
|
$contact = DBA::selectFirst('contact', ['nurl', 'uid'], ['id' => DBA::lastInsertId()]);
|
||||||
|
@ -1927,7 +1927,7 @@ class Contact extends BaseObject
|
||||||
* @param integer $contact_id Contact ID
|
* @param integer $contact_id Contact ID
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public static function handleDuplicateByID($contact_id)
|
public static function handleDuplicateByID(int $contact_id)
|
||||||
{
|
{
|
||||||
$contact = DBA::selectFirst('contact', ['nurl', 'uid'], ['id' => $contact_id, 'deleted' => false]);
|
$contact = DBA::selectFirst('contact', ['nurl', 'uid'], ['id' => $contact_id, 'deleted' => false]);
|
||||||
if (!DBA::isResult($contact)) {
|
if (!DBA::isResult($contact)) {
|
||||||
|
@ -1948,7 +1948,7 @@ class Contact extends BaseObject
|
||||||
* @return boolean
|
* @return boolean
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
private static function handleDuplicates($nurl, $uid)
|
private static function handleDuplicates(string $nurl, int $uid)
|
||||||
{
|
{
|
||||||
$condition = ['nurl' => $nurl, 'uid' => $uid, 'deleted' => false, 'network' => Protocol::FEDERATED];
|
$condition = ['nurl' => $nurl, 'uid' => $uid, 'deleted' => false, 'network' => Protocol::FEDERATED];
|
||||||
$count = DBA::count('contact', $condition);
|
$count = DBA::count('contact', $condition);
|
||||||
|
|
Loading…
Reference in a new issue