]> git.mxchange.org Git - friendica.git/blob - src/Worker/DBUpdate.php
Merge pull request #6536 from annando/ap-forum-2
[friendica.git] / src / Worker / DBUpdate.php
1 <?php
2 /**
3  * @file src/Worker/DBUpdate.php
4  * @brief This file is called when the database structure needs to be updated
5  */
6 namespace Friendica\Worker;
7
8 use Friendica\Core\Update;
9
10 class DBUpdate
11 {
12         public static function execute()
13         {
14                 Update::run();
15         }
16 }