1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-29 20:28:59 +01:00

Only create after analysis event if they exist

Fixes #5008 - this does some git execing, so we don’t want it to always run
This commit is contained in:
Matt Brown 2021-01-14 16:44:20 -05:00 committed by Daniil Gentili
parent 8954c12eaa
commit 2fbfc429b7
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -544,6 +544,9 @@ class IssueBuffer
$source_control_info = null;
$build_info = (new \Psalm\Internal\ExecutionEnvironment\BuildInfoCollector($_SERVER))->collect();
if ($codebase->config->eventDispatcher->after_analysis
|| $codebase->config->eventDispatcher->legacy_after_analysis
) {
try {
$source_control_info = (new \Psalm\Internal\ExecutionEnvironment\GitInfoCollector())->collect();
} catch (\RuntimeException $e) {
@ -559,6 +562,7 @@ class IssueBuffer
);
$codebase->config->eventDispatcher->dispatchAfterAnalysis($event);
}
foreach ($project_analyzer->generated_report_options as $report_options) {
if (!$report_options->output_path) {