]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/TagUpdate.php
Remove include/group.php
[friendica.git] / src / Worker / TagUpdate.php
index 1e97135c5b05fa6a038b3b6f001f3471be175bee..93423ecb2a7fa5729398c0563ca8a0a0dd882401 100644 (file)
@@ -1,6 +1,10 @@
 <?php
+namespace Friendica\Worker;
+
 require_once("include/tags.php");
 
-function tagupdate_run(&$argv, &$argc){
-       update_items();
+class TagUpdate {
+       public static function execute() {
+               update_items();
+       }
 }