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));