ernestwisniewski/kbin

View on GitHub
src/Markdown/CommonMark/Node/CommunityLink.php

Summary

Maintainability
A
35 mins
Test Coverage
<?php

// SPDX-FileCopyrightText: 2023 /kbin contributors <https://kbin.pub/>
//
// SPDX-License-Identifier: AGPL-3.0-only

declare(strict_types=1);

namespace App\Markdown\CommonMark\Node;

use App\Markdown\CommonMark\MentionType;

class CommunityLink extends ActivityPubMentionLink
{
    public function __construct(
        string $url,
        string $label,
        string $title,
        private string $kbinUsername,
        private MentionType $type,
    ) {
        parent::__construct($url, $label, $title, $kbinUsername, $type);
    }
}