]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/DBUpdate.php
Move Config::get() to DI::config()->get()
[friendica.git] / src / Worker / DBUpdate.php
index 84159eb433c5b5d7fcc1f4cd91e0697910b20524..83c9fd32323b6b947225d9621231ebadb254f451 100644 (file)
@@ -1,21 +1,20 @@
 <?php
 /**
  * @file src/Worker/DBUpdate.php
- * @brief This file is called when the database structure needs to be updated
+ * This file is called when the database structure needs to be updated
  */
 namespace Friendica\Worker;
 
-use Friendica\BaseObject;
 use Friendica\Core\Config;
 use Friendica\Core\Update;
 use Friendica\DI;
 
-class DBUpdate extends BaseObject
+class DBUpdate
 {
        public static function execute()
        {
                // Just in case the last update wasn't failed
-               if (Config::get('system', 'update', Update::SUCCESS, true) != Update::FAILED) {
+               if (DI::config()->get('system', 'update', Update::SUCCESS, true) != Update::FAILED) {
                        Update::run(DI::app()->getBasePath());
                }
        }