mirror of
https://github.com/friendica/friendica
synced 2025-04-27 19:50:12 +00:00
Changes:
- added missing type-hints - added documentation - removed parameter $baseURL while it can be locally get the same way but lesser parameter - used ActivityNamespace::SALMON_ME - changed double-quotes to single
This commit is contained in:
parent
074bae33c9
commit
cfa575b8e5
10 changed files with 71 additions and 35 deletions
|
@ -88,6 +88,7 @@ class Notify extends BaseRepository
|
|||
/**
|
||||
* @param array $condition
|
||||
* @param array $params
|
||||
*
|
||||
* @return Entity\Notify
|
||||
* @throws HTTPException\NotFoundException
|
||||
*/
|
||||
|
@ -117,6 +118,7 @@ class Notify extends BaseRepository
|
|||
|
||||
/**
|
||||
* @param int $id
|
||||
*
|
||||
* @return Entity\Notify
|
||||
* @throws HTTPException\NotFoundException
|
||||
*/
|
||||
|
@ -153,6 +155,7 @@ class Notify extends BaseRepository
|
|||
|
||||
/**
|
||||
* @param Entity\Notify $Notify
|
||||
*
|
||||
* @return Entity\Notify
|
||||
* @throws HTTPException\NotFoundException
|
||||
* @throws HTTPException\InternalServerErrorException
|
||||
|
@ -459,7 +462,7 @@ class Notify extends BaseRepository
|
|||
|
||||
case Model\Notification\Type::SYSTEM:
|
||||
switch($params['event']) {
|
||||
case "SYSTEM_REGISTER_REQUEST":
|
||||
case 'SYSTEM_REGISTER_REQUEST':
|
||||
$itemlink = $params['link'];
|
||||
$subject = $l10n->t('[Friendica System Notify]') . ' ' . $l10n->t('registration request');
|
||||
|
||||
|
@ -479,7 +482,8 @@ class Notify extends BaseRepository
|
|||
$tsitelink = sprintf($sitelink, $params['link']);
|
||||
$hsitelink = sprintf($sitelink, '<a href="'.$params['link'].'">'.$sitename.'</a><br><br>');
|
||||
break;
|
||||
case "SYSTEM_DB_UPDATE_FAIL":
|
||||
|
||||
case 'SYSTEM_DB_UPDATE_FAIL': // @TODO Unused (only here)
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
@ -492,7 +496,7 @@ class Notify extends BaseRepository
|
|||
return $this->storeAndSend($params, $sitelink, $tsitelink, $hsitelink, $title, $subject, $preamble, $epreamble, $body, $itemlink, $show_in_notification_page);
|
||||
}
|
||||
|
||||
private function storeAndSend($params, $sitelink, $tsitelink, $hsitelink, $title, $subject, $preamble, $epreamble, $body, $itemlink, $show_in_notification_page)
|
||||
private function storeAndSend(array $params, string $sitelink, string $tsitelink, string $hsitelink, string $title, string $subject, string $preamble, string $epreamble, string $body, string $itemlink, bool $show_in_notification_page): bool
|
||||
{
|
||||
$item_id = $params['item']['id'] ?? 0;
|
||||
$uri_id = $params['item']['uri-id'] ?? null;
|
||||
|
@ -671,7 +675,7 @@ class Notify extends BaseRepository
|
|||
return false;
|
||||
}
|
||||
|
||||
public function createFromNotification(Entity\Notification $Notification)
|
||||
public function createFromNotification(Entity\Notification $Notification): bool
|
||||
{
|
||||
$this->logger->info('Start', ['uid' => $Notification->uid, 'id' => $Notification->id, 'type' => $Notification->type]);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue