crazywhalecc 14bfb4198a
v3 base
2025-11-30 15:35:04 +08:00

15 lines
297 B
PHP

<?php
declare(strict_types=1);
namespace StaticPHP\Attribute\Package;
/**
* Indicates that the annotated class defines a PHP extension.
*/
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::IS_REPEATABLE)]
readonly class Extension
{
public function __construct(public string $name) {}
}