Fix errors in Contact namespace

This commit is contained in:
Art4 2024-12-01 22:11:04 +00:00
parent 88f693bb71
commit f628c540a4
3 changed files with 6 additions and 22 deletions

View file

@ -235,9 +235,6 @@ class Avatar
/** /**
* Delete locally cached avatar pictures of a contact * Delete locally cached avatar pictures of a contact
*
* @param string $avatar
* @return bool
*/ */
public static function deleteCache(array $contact): bool public static function deleteCache(array $contact): bool
{ {

View file

@ -19,7 +19,7 @@ use Friendica\BaseEntity;
* @property-read string $request * @property-read string $request
* @property-read string $photo * @property-read string $photo
* @property-read string $note * @property-read string $note
* @property-read \DateTime created * @property-read \DateTime $created
* @property-read int|null $id * @property-read int|null $id
*/ */
class FriendSuggest extends BaseEntity class FriendSuggest extends BaseEntity

View file

@ -9,7 +9,7 @@ namespace Friendica\Contact\FriendSuggest\Repository;
use Friendica\BaseRepository; use Friendica\BaseRepository;
use Friendica\Contact\FriendSuggest\Collection; use Friendica\Contact\FriendSuggest\Collection;
use Friendica\Contact\FriendSuggest\Entity; use Friendica\Contact\FriendSuggest\Entity\FriendSuggest as EntityFriendSuggest;
use Friendica\Contact\FriendSuggest\Exception\FriendSuggestNotFoundException; use Friendica\Contact\FriendSuggest\Exception\FriendSuggestNotFoundException;
use Friendica\Contact\FriendSuggest\Exception\FriendSuggestPersistenceException; use Friendica\Contact\FriendSuggest\Exception\FriendSuggestPersistenceException;
use Friendica\Contact\FriendSuggest\Factory; use Friendica\Contact\FriendSuggest\Factory;
@ -30,7 +30,7 @@ class FriendSuggest extends BaseRepository
parent::__construct($database, $logger, $factory); parent::__construct($database, $logger, $factory);
} }
private function convertToTableRow(Entity\FriendSuggest $fsuggest): array private function convertToTableRow(EntityFriendSuggest $fsuggest): array
{ {
return [ return [
'uid' => $fsuggest->uid, 'uid' => $fsuggest->uid,
@ -45,14 +45,9 @@ class FriendSuggest extends BaseRepository
} }
/** /**
* @param array $condition
* @param array $params
*
* @return Entity\FriendSuggest
*
* @throws NotFoundException The underlying exception if there's no FriendSuggest with the given conditions * @throws NotFoundException The underlying exception if there's no FriendSuggest with the given conditions
*/ */
private function selectOne(array $condition, array $params = []): Entity\FriendSuggest private function selectOne(array $condition, array $params = []): EntityFriendSuggest
{ {
return parent::_selectOne($condition, $params); return parent::_selectOne($condition, $params);
} }
@ -71,13 +66,9 @@ class FriendSuggest extends BaseRepository
} }
/** /**
* @param int $id
*
* @return Entity\FriendSuggest
*
* @throws FriendSuggestNotFoundException in case there's no suggestion for this id * @throws FriendSuggestNotFoundException in case there's no suggestion for this id
*/ */
public function selectOneById(int $id): Entity\FriendSuggest public function selectOneById(int $id): EntityFriendSuggest
{ {
try { try {
return $this->selectOne(['id' => $id]); return $this->selectOne(['id' => $id]);
@ -103,13 +94,9 @@ class FriendSuggest extends BaseRepository
} }
/** /**
* @param Entity\FriendSuggest $fsuggest
*
* @return Entity\FriendSuggest
*
* @throws FriendSuggestNotFoundException in case the underlying storage cannot save the suggestion * @throws FriendSuggestNotFoundException in case the underlying storage cannot save the suggestion
*/ */
public function save(Entity\FriendSuggest $fsuggest): Entity\FriendSuggest public function save(EntityFriendSuggest $fsuggest): EntityFriendSuggest
{ {
try { try {
$fields = $this->convertToTableRow($fsuggest); $fields = $this->convertToTableRow($fsuggest);