| Current Path : /home/rtorresani/www/vendor/allure-framework/allure-php-commons/src/Attribute/ |
| Current File : //home/rtorresani/www/vendor/allure-framework/allure-php-commons/src/Attribute/AbstractLink.php |
<?php
declare(strict_types=1);
namespace Qameta\Allure\Attribute;
abstract class AbstractLink implements LinkInterface
{
public function __construct(
private ?string $name = null,
private ?string $url = null,
private ?string $type = null,
) {
}
final public function getName(): ?string
{
return $this->name;
}
final public function getUrl(): ?string
{
return $this->url;
}
final public function getType(): ?string
{
return $this->type;
}
}