]> git.mxchange.org Git - friendica.git/commitdiff
Added documentation
authorMichael <heluecht@pirati.ca>
Fri, 17 Apr 2020 07:58:54 +0000 (07:58 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 17 Apr 2020 07:58:54 +0000 (07:58 +0000)
src/Model/Tag.php

index 43885e493ab81234b071f48f3ee5bec47860ea5d..9c9ac033f0bb7188a670143a084968071256d9d0 100644 (file)
@@ -54,6 +54,14 @@ class Tag
                self::EXCLUSIVE_MENTION => '!',
        ];
 
+       /**
+        * Store tag/mention elements
+        *
+        * @param integer $uriid
+        * @param integer $type
+        * @param string $name
+        * @param string $url
+        */
        public static function store(int $uriid, int $type, string $name, string $url = '')
        {
                $name = trim($name, "\x00..\x20\xFF#!@");
@@ -85,6 +93,14 @@ class Tag
                Logger::info('Stored tag/mention', ['uri-id' => $uriid, 'tag-id' => $tagid, 'tag' => $fields]);
        }
 
+       /**
+        * Store tag/mention elements
+        *
+        * @param integer $uriid
+        * @param string $hash
+        * @param string $name
+        * @param string $url
+        */
        public static function storeByHash(int $uriid, string $hash, string $name, string $url = '')
        {
                if ($hash == self::TAG_CHARACTER[self::MENTION]) {