fix(Type): correct ANY type constant value

- Changed ANY constant value from 'php::Var' to 'php::Any'
- Fixed duplicate assignment of VAR constant value
master
韩天峰 8 hours ago
parent 7dee6d0ac3
commit a31c84ed7f
  1. 1
      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';

Loading…
Cancel
Save