1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/Config/Plugin/Hook/AfterAnalysis.php

23 lines
613 B
PHP
Raw Normal View History

<?php
2019-05-10 00:58:30 +02:00
namespace Psalm\Test\Config\Plugin\Hook;
2020-02-17 00:24:40 +01:00
use Psalm\Internal\Analyzer\IssueData;
use Psalm\Plugin\EventHandler\AfterAnalysisInterface;
use Psalm\Plugin\EventHandler\Event\AfterAnalysisEvent;
class AfterAnalysis implements AfterAnalysisInterface
{
/**
* Called after analysis is complete
2019-03-23 19:27:54 +01:00
*
2020-02-17 00:24:40 +01:00
* @param array<string, list<IssueData>> $issues
*/
public static function afterAnalysis(AfterAnalysisEvent $event): void
{
$source_control_info = $event->getSourceControlInfo();
if ($source_control_info) {
$source_control_info->toArray();
}
}
}