]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/Cron.php
Add guid context to item deletion logging
[friendica.git] / src / Worker / Cron.php
index 7a59d64ffb9b9092b14bc0bed336297e8bd1c635..e22051cfc65eef23882f35911d65968f12821d90 100644 (file)
@@ -1,11 +1,27 @@
 <?php
 /**
- * @file src/Worker/Cron.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Worker;
 
 use Friendica\Core\Addon;
-use Friendica\Core\Config;
 use Friendica\Core\Hook;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
@@ -86,7 +102,7 @@ class Cron
 
                        self::checkdeletedContacts();
 
-                       Config::set('system', 'last_expire_day', $d2);
+                       DI::config()->set('system', 'last_expire_day', $d2);
                }
 
                // Hourly cron calls
@@ -100,7 +116,7 @@ class Cron
                                DBA::e("OPTIMIZE TABLE `workerqueue`");
                        }
 
-                       Config::set('system', 'last_cron_hourly', time());
+                       DI::config()->set('system', 'last_cron_hourly', time());
                }
 
                // Ensure to have a .htaccess file.
@@ -118,7 +134,7 @@ class Cron
 
                Logger::log('cron: end');
 
-               Config::set('system', 'last_cron', time());
+               DI::config()->set('system', 'last_cron', time());
 
                return;
        }