]> git.mxchange.org Git - friendica.git/commitdiff
Type hints, corrected wrong documentation
authorMichael Vogel <icarus@dabo.de>
Fri, 30 Aug 2019 05:38:42 +0000 (07:38 +0200)
committerMichael Vogel <icarus@dabo.de>
Fri, 30 Aug 2019 05:38:42 +0000 (07:38 +0200)
src/Database/PostUpdate.php
src/Model/Contact.php

index 2e3af8597b2e50ab9a75f16444807cdac521aa63..8c5414bfc2610e0eca4088eaf23ff74b7493f41a 100644 (file)
@@ -420,7 +420,7 @@ class PostUpdate
                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
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
index dfabf260de9a515392e883720a85138c297d0133..a8dc673bce26411c0e65f9497cc29d6bfc0ad3a8 100644 (file)
@@ -146,7 +146,7 @@ class Contact extends BaseObject
         * @return boolean was the insert successful?
         * @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);
                $contact = DBA::selectFirst('contact', ['nurl', 'uid'], ['id' => DBA::lastInsertId()]);
@@ -1927,7 +1927,7 @@ class Contact extends BaseObject
         * @param integer $contact_id Contact ID
         * @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]);
                if (!DBA::isResult($contact)) {
@@ -1948,7 +1948,7 @@ class Contact extends BaseObject
         * @return boolean
         * @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];
                $count = DBA::count('contact', $condition);