static-php-cli/src/StaticPHP/Attribute/PatchDescription.php
crazywhalecc 14bfb4198a
v3 base
2025-11-30 15:35:04 +08:00

12 lines
233 B
PHP

<?php
declare(strict_types=1);
namespace StaticPHP\Attribute;
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
readonly class PatchDescription
{
public function __construct(public string $description) {}
}