1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Allow 0 in type

This commit is contained in:
Matt Brown 2018-06-14 15:58:49 -04:00
parent d56dd6bed6
commit 7fb4c4acad

View File

@ -594,6 +594,7 @@ abstract class Type
if ($string_type_token[0] === '"'
|| $string_type_token[0] === '\''
|| $string_type_token === '0'
|| preg_match('/[1-9]/', $string_type_token[0])
) {
continue;
@ -653,10 +654,6 @@ abstract class Type
throw new \InvalidArgumentException('$class cannot be empty');
}
if ($class === '0') {
throw new TypeParseTreeException('Unrecognised class 0');
}
if ($class[0] === '\\') {
return substr($class, 1);
}