static-php-cli/src/StaticPHP/Attribute/PatchDescription.php

12 lines
233 B
PHP
Raw Normal View History

2025-11-30 15:35:04 +08:00
<?php
declare(strict_types=1);
namespace StaticPHP\Attribute;
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
readonly class PatchDescription
{
public function __construct(public string $description) {}
}