fixups
authorPhilipp <admin@philipp.info>
Sun, 14 May 2023 09:18:59 +0000 (11:18 +0200)
committerPhilipp <admin@philipp.info>
Sun, 14 May 2023 09:18:59 +0000 (11:18 +0200)
src/Database/DBStructure.php
src/Database/DatabaseException.php
src/Federation/Repository/DeliveryQueueItem.php

index 3141ca6..6291d0f 100644 (file)
@@ -58,7 +58,7 @@ class DBStructure
        }
 
        /**
-        * Dops a specific table
+        * Drops a specific table
         *
         * @param string $table the table name
         *
index 9473e58..8c99b9a 100644 (file)
@@ -45,9 +45,8 @@ class DatabaseException extends Exception
         */
        public function __construct(string $message, int $code, string $query, Throwable $previous = null)
        {
-               $this->query = $query;
-
                parent::__construct(sprintf('"%s" at "%s"', $message, $query) , $code, $previous);
+               $this->query = $query;
        }
 
        /**
index 5d5198a..37d4ad8 100644 (file)
@@ -88,8 +88,10 @@ final class DeliveryQueueItem extends \Friendica\BaseRepository
 
        public function remove(Entity\DeliveryQueueItem $deliveryQueueItem): bool
        {
-               return $this->db->delete(self::$table_name, ['uri-id' => $deliveryQueueItem->postUriId,
-                                                                                                        'gsid'   => $deliveryQueueItem->targetServerId]);
+               return $this->db->delete(self::$table_name, [
+                       'uri-id' => $deliveryQueueItem->postUriId,
+                       'gsid'   => $deliveryQueueItem->targetServerId
+               ]);
        }
 
        public function removeFailedByServerId(int $gsid, int $failedThreshold): bool
@@ -99,11 +101,13 @@ final class DeliveryQueueItem extends \Friendica\BaseRepository
 
        public function incrementFailed(Entity\DeliveryQueueItem $deliveryQueueItem): bool
        {
-               return $this->db->update(self::$table_name, ["`failed` = `failed` + 1"],
-                       ["`uri-id` = ? AND `gsid` = ?",
-                        $deliveryQueueItem->postUriId,
-                        $deliveryQueueItem->targetServerId
-                       ]);
+               return $this->db->update(self::$table_name, [
+                       "`failed` = `failed` + 1"
+               ], [
+                       "`uri-id` = ? AND `gsid` = ?",
+                       $deliveryQueueItem->postUriId,
+                       $deliveryQueueItem->targetServerId
+               ]);
        }
 
        public function optimizeStorage(): bool