]> git.mxchange.org Git - friendica.git/blobdiff - src/DI.php
Continued:
[friendica.git] / src / DI.php
index 681c8fcbc168ecba0f07e606a00f92de56b6cfa4..a984bc934f6200fc50b373bd131ea0084a12b3f1 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2023, the Friendica project
+ * @copyright Copyright (C) 2010-2024, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -555,6 +555,35 @@ abstract class DI
                return self::$dice->create(Content\Conversation\Factory\Timeline::class);
        }
 
+       /**
+        * @return Content\Conversation\Factory\Community
+        */
+       public static function CommunityFactory()
+       {
+               return self::$dice->create(Content\Conversation\Factory\Community::class);
+       }
+
+       /**
+        * @return Content\Conversation\Factory\Channel
+        */
+       public static function ChannelFactory()
+       {
+               return self::$dice->create(Content\Conversation\Factory\Channel::class);
+       }
+
+       public static function userDefinedChannel(): Content\Conversation\Repository\UserDefinedChannel
+       {
+               return self::$dice->create(Content\Conversation\Repository\UserDefinedChannel::class);
+       }
+
+       /**
+        * @return Content\Conversation\Factory\Network
+        */
+       public static function NetworkFactory()
+       {
+               return self::$dice->create(Content\Conversation\Factory\Network::class);
+       }
+
        /**
         * @return Contact\Introduction\Repository\Introduction
         */
@@ -731,4 +760,9 @@ abstract class DI
        {
                return self::$dice->create(Util\Emailer::class);
        }
+
+       public static function postMediaRepository(): Content\Post\Repository\PostMedia
+       {
+               return self::$dice->create(Content\Post\Repository\PostMedia::class);
+       }
 }