Moving Model call outside Object Namespace

This commit is contained in:
Philipp Holzer 2019-03-01 13:09:40 +01:00
parent 09c44f96fd
commit 0098f97c4a
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 4 additions and 1 deletions

View File

@ -353,6 +353,9 @@ class Photo extends BaseObject
/**
* @brief This function is used by the fromgplus addon
*
* Stores a photo based on image data or an URL
*
* @param integer $uid user id
* @param string $imagedata optional, default empty
* @param string $url optional, default empty
@ -360,7 +363,7 @@ class Photo extends BaseObject
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
*/
public static function storePhoto($uid, $imagedata = "", $url = "")
public static function storeByData($uid, $imagedata = "", $url = "")
{
$a = self::getApp();
$logger = $a->getLogger();