]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/DBClean.php
Some more added lines
[friendica.git] / src / Worker / DBClean.php
index 67f073b10fd1f78239c8b9045d5cc08f3cd2fc86..92c942522d78c03406eefa0e31365d2dc2c19ecd 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file src/Worker/DBClean.php
- * @brief The script is called from time to time to clean the database entries and remove orphaned data.
+ * The script is called from time to time to clean the database entries and remove orphaned data.
  */
 
 namespace Friendica\Worker;
@@ -26,7 +26,7 @@ class DBClean {
        }
 
        /**
-        * @brief Fork the different DBClean processes
+        * Fork the different DBClean processes
         */
        private static function forkCleanProcess() {
                // Get the expire days for step 8 and 9
@@ -42,25 +42,25 @@ class DBClean {
        }
 
        /**
-        * @brief Remove orphaned database entries
+        * Remove orphaned database entries
+        *
         * @param integer $stage What should be deleted?
         *
         * Values for $stage:
         * ------------------
-        *  1:  Old global item entries from item table without user copy.
-        *  2:  Items without parents.
-        *  3:  Orphaned data from thread table.
-        *  4:  Orphaned data from notify table.
-        *  5:  Orphaned data from notify-threads table.
-        *  6:  Orphaned data from sign table.
-        *  7:  Orphaned data from term table.
-        *  8:  Expired threads.
-        *  9:  Old global item entries from expired threads.
-        * 10:  Old conversations.
+        *  1:    Old global item entries from item table without user copy.
+        *  2:    Items without parents.
+        *  3:    Orphaned data from thread table.
+        *  4:    Orphaned data from notify table.
+        *  5:    Orphaned data from notify-threads table.
+        *  6:    Orphaned data from sign table.
+        *  7:    Orphaned data from term table.
+        *  8:    Expired threads.
+        *  9:    Old global item entries from expired threads.
+        * 10:    Old conversations.
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        private static function removeOrphans($stage) {
-               $count = 0;
-
                // We split the deletion in many small tasks
                $limit = Config::get('system', 'dbclean-expire-limit', 1000);