$this->title(), 'message' => "From {$this->webMention->source}", 'open_url' => $this->webMention->target, ]); } /** * Build a notification title based on the webmention type. */ private function title(): string { return match ($this->webMention->type) { 'in-reply-to' => 'New reply', 'like-of' => 'New like', 'repost-of' => 'New repost', default => 'New webmention', }; } }