From: Hypolite Petovan <hypolite@mrpetovan.com>
Date: Sun, 16 Feb 2020 17:04:13 +0000 (-0500)
Subject: Use namespace alias in Module\Update\Community
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=efbafce2d5eab19e6c2a6014df53b248e743e0d1;p=friendica.git

Use namespace alias in Module\Update\Community
---

diff --git a/src/Module/Update/Community.php b/src/Module/Update/Community.php
index 9d85cb3e8d..e0bc6c0676 100644
--- a/src/Module/Update/Community.php
+++ b/src/Module/Update/Community.php
@@ -24,13 +24,14 @@ namespace Friendica\Module\Update;
 
 use Friendica\Core\System;
 use Friendica\DI;
+use Friendica\Module\Conversation\Community as CommunityModule;
 
 /**
  * Asynchronous update module for the community page
  *
  * @package Friendica\Module\Update
  */
-class Community extends \Friendica\Module\Conversation\Community
+class Community extends CommunityModule
 {
 	public static function rawContent(array $parameters = [])
 	{