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