DIR:/home/austenwhite.co.uk/www/dev/vendor/allure-framework/allure-php-commons/src/Attribute/ |
Current File : //home/austenwhite.co.uk/www/dev/vendor/allure-framework/allure-php-commons/src/Attribute/Lead.php |
<?php declare(strict_types=1); namespace Qameta\Allure\Attribute; use Attribute; #[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD | Attribute::IS_REPEATABLE)] final class Lead extends AbstractLabel { public function __construct(string $value) { parent::__construct(Label::LEAD, $value); } } |