1
0
Fork 0
pull/328/merge
Sébastien Müller 2017-04-24 11:32:58 +00:00 committed by GitHub
commit 662af08925
1 changed files with 3 additions and 1 deletions

View File

@ -833,7 +833,9 @@ class DefinitionResolver
// Unknown // Unknown
return new Types\Mixed; return new Types\Mixed;
} }
return null; // Return Types\Mixed in case nothing was found
// TODO: Find cases that don't match any rule and handle them'
return new Types\Mixed;
} }
/** /**