. */ declare(strict_types=1); namespace SP\Domain\Common\Attributes; use Attribute; /** * Class UpgradeHandler */ #[Attribute(Attribute::TARGET_CLASS | Attribute::IS_REPEATABLE)] final class UpgradeVersion { public function __construct(public readonly string $version) { } }