]> git.mxchange.org Git - friendica.git/blob - DBUpdate.php
48c7e7ce6a20ec22fa3bb5389aea01970aeb00c8
[friendica.git] / 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 }