From 37bc023d3f11b0c4db94c525d2e726843d6120ee Mon Sep 17 00:00:00 2001 From: Ondrej Mirtes Date: Sat, 3 Jan 2026 12:49:49 +0100 Subject: [PATCH] Issue bot - run with FNSR --- issue-bot/src/Console/RunCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/issue-bot/src/Console/RunCommand.php b/issue-bot/src/Console/RunCommand.php index 8027255fe5..f6bc3f1d92 100644 --- a/issue-bot/src/Console/RunCommand.php +++ b/issue-bot/src/Console/RunCommand.php @@ -111,6 +111,7 @@ private function analyseHash(OutputInterface $output, int $phpVersion, Playgroun $output->writeln(sprintf('Starting analysis of %s', $hash)); $startTime = microtime(true); + putenv("PHPSTAN_FNSR=1"); exec(implode(' ', $commandArray), $outputLines, $exitCode); $elapsedTime = microtime(true) - $startTime; $output->writeln(sprintf('Analysis of %s took %.2f s', $hash, $elapsedTime));