]> git.mxchange.org Git - friendica.git/commitdiff
Type hints
authorMichael <heluecht@pirati.ca>
Tue, 3 Sep 2019 03:59:46 +0000 (03:59 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 3 Sep 2019 03:59:46 +0000 (03:59 +0000)
src/Model/ItemDeliveryData.php
src/Protocol/Diaspora.php
src/Worker/Delivery.php

index 5a181eb1b188f01e81acbc772e21aa5b602671fe..7c64427eff7571ebb0608e833b37d63f62890d0c 100644 (file)
@@ -111,7 +111,7 @@ class ItemDeliveryData
         * @return bool
         * @throws \Exception
         */
-       public static function incrementQueueCount($item_id, $increment)
+       public static function incrementQueueCount(int $item_id, int $increment = 1)
        {
                return DBA::e('UPDATE `item-delivery-data` SET `queue_count` = `queue_count` + ? WHERE `iid` = ?', $increment, $item_id);
        }
index a0bb0d9fa3a7796a3efdac08067a66aa60b4509b..87ec7d5a0c5937d291f25148ec54f1ce9efc21af 100644 (file)
@@ -55,7 +55,7 @@ class Diaspora
         *
         * @param array $contact of the relay contact
         */
-       public static function markRelayForArchival($contact)
+       public static function markRelayForArchival(array $contact)
        {
                if (!empty($contact['contact-type']) && ($contact['contact-type'] == Contact::TYPE_RELAY)) {
                        // This is already the relay contact, we don't need to fetch it
@@ -174,7 +174,7 @@ class Diaspora
         * @return array with the contact
         * @throws \Exception
         */
-       private static function getRelayContact($server_url, $fields = ['batch', 'id', 'name', 'network', 'protocol', 'archive', 'blocked'])
+       private static function getRelayContact(string $server_url, array $fields = ['batch', 'id', 'name', 'network', 'protocol', 'archive', 'blocked'])
        {
                // Fetch the relay contact
                $condition = ['uid' => 0, 'nurl' => Strings::normaliseLink($server_url),
index 3079adecc227b98a953718df5e6f81a3d3efa93a..d29ec7c4c897e092c7429030ce1433b56c7703ed 100644 (file)
@@ -211,7 +211,13 @@ class Delivery extends BaseObject
                return;
        }
 
-       private static function setFailedQueue($cmd, $id)
+       /**
+        * Increased the "failed" counter in the item delivery data
+        *
+        * @param string  $cmd Command
+        * @param integer $id  Item id
+        */
+       private static function setFailedQueue(string $cmd, int $id)
        {
                if (!in_array($cmd, [Delivery::POST, Delivery::POKE])) {
                        return;