]> git.mxchange.org Git - friendica.git/commitdiff
Changes after code review
authorMichael <heluecht@pirati.ca>
Wed, 3 Aug 2022 04:31:56 +0000 (04:31 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 3 Aug 2022 04:31:56 +0000 (04:31 +0000)
src/Protocol/ActivityPub/Queue.php

index 87d491bd99a3e66a59aa3c0635446c5df4e92e7c..751ee93bda32e6337c2a261314086dc01f404aee 100644 (file)
@@ -85,7 +85,7 @@ class Queue
        }
 
        /**
-        * Checks if an entryy for a given url and type already exists
+        * Checks if an entry for a given url and type already exists
         *
         * @param string $url
         * @param string $type
@@ -144,16 +144,16 @@ class Queue
        /**
         * Set the worker id for the queue entry
         *
-        * @param int $entryid
+        * @param int $entry_id
         * @param int $wid
         * @return void
         */
-       public static function setWorkerId(int $entryid, int $wid)
+       public static function setWorkerId(int $entry_id, int $wid)
        {
-               if (empty($entryid) || empty($wid)) {
+               if (empty($entry_id) || empty($wid)) {
                        return;
                }
-               DBA::update('inbox-entry', ['wid' => $wid], ['id' => $entryid]);
+               DBA::update('inbox-entry', ['wid' => $wid], ['id' => $entry_id]);
        }
 
        /**