Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/allure-framework/allure-php-commons/src/Attribute/
Upload File :
Current File : //home/rtorresani/www/vendor/allure-framework/allure-php-commons/src/Attribute/LinkInterface.php

<?php

declare(strict_types=1);

namespace Qameta\Allure\Attribute;

interface LinkInterface extends AttributeInterface
{
    public function getName(): ?string;

    public function getUrl(): ?string;

    public function getType(): ?string;
}