]> git.mxchange.org Git - friendica.git/blobdiff - src/DI.php
Merge pull request #10095 from annando/parseurl-photos
[friendica.git] / src / DI.php
index c89315c0ec98897e532d5eac0837d163eceae43d..b3f00f8c99cbb02725a0659973bdc450dd72f516 100644 (file)
@@ -63,14 +63,6 @@ abstract class DI
        // "App" namespace instances
        //
 
-       /**
-        * @return App\Authentication
-        */
-       public static function auth()
-       {
-               return self::$dice->create(App\Authentication::class);
-       }
-
        /**
         * @return App\Arguments
         */
@@ -247,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
         */
@@ -255,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
         */
@@ -279,6 +287,38 @@ abstract class DI
                return self::$dice->create(Factory\Api\Mastodon\Relationship::class);
        }
 
+       /**
+        * @return Factory\Api\Mastodon\Status
+        */
+       public static function mstdnStatus()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\Status::class);
+       }
+
+       /**
+        * @return Factory\Api\Mastodon\Mention
+        */
+       public static function mstdnMention()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\Mention::class);
+       }
+
+       /**
+        * @return Factory\Api\Mastodon\Tag
+        */
+       public static function mstdnTag()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\Tag::class);
+       }
+
+       /**
+        * @return Factory\Api\Twitter\User
+        */
+       public static function twitterUser()
+       {
+               return self::$dice->create(Factory\Api\Twitter\User::class);
+       }
+
        /**
         * @return Factory\Notification\Notification
         */
@@ -298,6 +338,13 @@ abstract class DI
        //
        // "Model" namespace instances
        //
+       /**
+        * @return Model\Process
+        */
+       public static function modelProcess()
+       {
+               return self::$dice->create(Model\Process::class);
+       }
 
        /**
         * @return Model\User\Cookie
@@ -315,6 +362,18 @@ abstract class DI
                return self::$dice->create(Model\Storage\IStorage::class);
        }
 
+       //
+       // "Network" namespace
+       //
+
+       /**
+        * @return Network\IHTTPRequest
+        */
+       public static function httpRequest()
+       {
+               return self::$dice->create(Network\IHTTPRequest::class);
+       }
+
        //
        // "Repository" namespace
        //
@@ -352,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);
        }
 
        //
@@ -371,6 +430,18 @@ abstract class DI
                return self::$dice->create(Protocol\Activity::class);
        }
 
+       //
+       // "Security" namespace instances
+       //
+
+       /**
+        * @return \Friendica\Security\Authentication
+        */
+       public static function auth()
+       {
+               return self::$dice->create(Security\Authentication::class);
+       }
+
        //
        // "Util" namespace instances
        //