From 919c714e71e08eba6c514381fcf82708effd7be0 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Sun, 17 May 2026 10:21:51 +0200 Subject: [PATCH] Fix 2.2.x build after f2af15b571 --- src/Type/Accessory/AccessoryDecimalIntegerStringType.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Type/Accessory/AccessoryDecimalIntegerStringType.php b/src/Type/Accessory/AccessoryDecimalIntegerStringType.php index 7732aceffc6..d965eb0ebc9 100644 --- a/src/Type/Accessory/AccessoryDecimalIntegerStringType.php +++ b/src/Type/Accessory/AccessoryDecimalIntegerStringType.php @@ -456,6 +456,11 @@ public function getFiniteTypes(): array return []; } + public function getDefaultBaseType(): Type + { + return new StringType(); + } + public function toPhpDocNode(): TypeNode { return new IdentifierTypeNode($this->inverse ? 'non-decimal-int-string' : 'decimal-int-string');