mirror of
https://github.com/friendica/friendica
synced 2025-04-27 17:50:17 +00:00
Apply suggestions from code review
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
parent
ed4a18f079
commit
d9d30d9555
2 changed files with 6 additions and 6 deletions
|
@ -1668,9 +1668,9 @@ class Contact
|
|||
* @param integer $cid contact id
|
||||
* @return string avatar link
|
||||
*/
|
||||
public static function getAvatarForContact(int $cid):string
|
||||
public static function getAvatarUrlForId(int $cid):string
|
||||
{
|
||||
return DI::baseUrl() . '/photo/contact/'. $cid;
|
||||
return DI::baseUrl() . '/photo/contact/' . $cid;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1679,9 +1679,9 @@ class Contact
|
|||
* @param integer $cid contact id
|
||||
* @return string header link
|
||||
*/
|
||||
public static function getHeaderForContact(int $cid):string
|
||||
public static function getHeaderUrlForId(int $cid):string
|
||||
{
|
||||
return DI::baseUrl() . '/photo/header/'. $cid;
|
||||
return DI::baseUrl() . '/photo/header/' . $cid;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue