]> git.mxchange.org Git - friendica.git/blobdiff - src/DI.php
We now don't store in the "item" table anymore
[friendica.git] / src / DI.php
index e259c271a00ac4ef6dc82d13b4e21246b76d89eb..b3f00f8c99cbb02725a0659973bdc450dd72f516 100644 (file)
@@ -239,6 +239,14 @@ abstract class DI
                return self::$dice->create(Factory\Api\Mastodon\Account::class);
        }
 
+       /**
+        * @return Factory\Api\Mastodon\Attachment
+        */
+       public static function mstdnAttachment()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\Attachment::class);
+       }
+
        /**
         * @return Factory\Api\Mastodon\Emoji
         */
@@ -247,6 +255,14 @@ abstract class DI
                return self::$dice->create(Factory\Api\Mastodon\Emoji::class);
        }
 
+       /**
+        * @return Factory\Api\Mastodon\Error
+        */
+       public static function mstdnError()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\Error::class);
+       }
+
        /**
         * @return Factory\Api\Mastodon\Field
         */
@@ -395,11 +411,11 @@ abstract class DI
        }
 
        /**
-        * @return Repository\Notify
+        * @return Repository\Notification
         */
        public static function notify()
        {
-               return self::$dice->create(Repository\Notify::class);
+               return self::$dice->create(Repository\Notification::class);
        }
 
        //