]> git.mxchange.org Git - friendica.git/commitdiff
Proper type is string
authorRoland Häder <roland@mxchange.org>
Sat, 18 Jun 2022 16:41:07 +0000 (18:41 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 18 Jun 2022 16:41:16 +0000 (18:41 +0200)
src/Model/Photo.php

index 77515b1496474229e558fabf3155f3caee33e4fc..ba4db6aca8f4127491800cc050f8c37ede054c09 100644 (file)
@@ -317,7 +317,7 @@ class Photo
         * @param Image   $image     Image object with data
         * @param integer $uid       User ID
         * @param integer $cid       Contact ID
-        * @param integer $rid       Resource ID
+        * @param string  $rid       Resource ID
         * @param string  $filename  Filename
         * @param string  $album     Album name
         * @param integer $scale     Scale
@@ -331,7 +331,7 @@ class Photo
         * @return boolean True on success
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function store(Image $image, int $uid, int $cid, int $rid, string $filename, string $album, int $scale, int $type = self::DEFAULT, string $allow_cid = '', string $allow_gid = '', string $deny_cid = '', string $deny_gid = '', string $desc = ''): bool
+       public static function store(Image $image, int $uid, int $cid, string $rid, string $filename, string $album, int $scale, int $type = self::DEFAULT, string $allow_cid = '', string $allow_gid = '', string $deny_cid = '', string $deny_gid = '', string $desc = ''): bool
        {
                $photo = self::selectFirst(['guid'], ['`resource-id` = ? AND `guid` != ?', $rid, '']);
                if (DBA::isResult($photo)) {
@@ -476,7 +476,7 @@ class Photo
         * @param integer $uid           user id
         * @param integer $cid           contact id
         * @param boolean $quit_on_error optional, default false
-        * @return array
+        * @return array|bool Array on success, false on error
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */