From a31c84ed7f6bd0ca0543a6406db6c404d6f54c5d Mon Sep 17 00:00:00 2001 From: tianfenghan Date: Sun, 6 Sep 2026 17:07:40 +0800 Subject: [PATCH] fix(Type): correct ANY type constant value - Changed ANY constant value from 'php::Var' to 'php::Any' - Fixed duplicate assignment of VAR constant value --- src/Type.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Type.php b/src/Type.php index 5524aa31..9ef837a9 100644 --- a/src/Type.php +++ b/src/Type.php @@ -5,6 +5,7 @@ namespace TypePhp; final class Type { public const string VAR = 'php::Var'; + public const string ANY = 'php::Var'; public const string BOOL = 'php::Bool'; public const string INT = 'php::Int'; public const string FLOAT = 'php::Float';