vimeo / psalm

A static analysis tool for finding errors in PHP applications
https://psalm.dev
MIT License
5.54k stars 660 forks source link

Fatal error since PHP 8.3.9+ #11067

Open sukei opened 1 month ago

sukei commented 1 month ago

When I run the whole analyze, I got the following error at the very end:

PHP Fatal error: Maximum execution time of 0 seconds exceeded in vendor/vimeo/psalm/src/Psalm/Internal/Type/ParseTree.php on line 26

If I remove the method ParseTree::__destruct, the error disappear. This method seems to exist for the memory management, but I do not see any improvement of the memory usage with or without the destructor.

romulodl commented 1 week ago

got the same error running psalm 5.25.0 on PHP 8.2.22

InvisibleSmiley commented 1 week ago

Last known good: 5.6.0 (broken since 5.7.0). I'm using psalm/phar because I cannot install vimeo/psalm due to dependency issues (namely nikic/php-parser ^5). Happens with both PHP 8.1 and 8.2.

InvisibleSmiley commented 1 week ago

Maybe stating the obvious, but this is neither a problem exceeding the max execution time nor a PHP config issue. It's an infinite loop.

weirdan commented 1 week ago

I can't reproduce it. Running latest 5.x branch on either PHP 8.2.23 or PHP 8.3.11 (both are the latest versions at the time of writing) on Psalm's own source code.

pereorga commented 1 week ago

Psalm's own source code

I can reproduce this using PHP 8.3.11 (brew, Mac M1), when running it with --no-cache.

weirdan commented 1 week ago

Running linux here, and it looks like it may be apple-specific: https://github.com/php/php-src/issues/12814#issuecomment-2224838123

@vudaltsov have you had any success tracking it down?

sukei commented 1 week ago

I can reproduce this using PHP 8.3.11 (brew, Mac M1), when running it with --no-cache.

I have PHP 8.3.11 installed with brew on a MacBook Pro M1 too. The --no-cache flag is not better nor worse however.