Hi,
It seems phpdoc-parser tries to use the files' namespace even for native types. Not sure how to best explain this, let me do my best.
There this really odd issue on the Safe library where phpstan + larastan would throw an error on any library using the Safe package. At first I thought the error was on larastan but after they fixed what I thought was the root cause, the error was still there, so after some more debugging (thank $DEITY for xdebug) I found out that the problem was on the library (or on phpdoc-parser, it could be fixed on both places).
Long story short, the library is basically a bunch of files redeclaring native php functions, the issue is that whenever there's a phpdoc on one of their files using @param array
or @return array
, since all function files are namespaced under Safe
, the parser tries to use the type Safe\array
, which unfortunately has a PSR4 match on their array.php
file. The bug appeared when the library was used together with larastan because larastan checks if any of the parameters is a subclass of one of Laravel's Eloquent classes on one of their extensions, triggering the second loading of the same file (doing (new ObjectType(Model::class))->isSuperTypeOf(new ObjectType($nameScope->resolveStringName('Safe\array')))->yes()
). I (erroneously) thought that adding \
to the array will force it to be on the global namespace but it turns out that \array
is not a valid type for phpstan.
Anyway, I believe the native types from PHP should take precedence when being parsed (same than the actual PHP behaviour), maybe with some sort of list to be compared with when parsing the types from @param
and @return
, although I'm not fully familiar with the implementation to make a proper suggestion.
Please, let me know if there are any doubts so I can explain further, not my best day today :stuck_out_tongue: