mirror of
https://github.com/danog/psalm.git
synced 2024-12-16 03:17:02 +01:00
f9fccb2b2d
* implement DTO for plugins * introduce EventHandler + reintroduce legacy API for plugins
10 lines
261 B
PHP
10 lines
261 B
PHP
<?php
|
|
namespace Psalm\Plugin\EventHandler;
|
|
|
|
use Psalm\Plugin\EventHandler\Event\AfterFunctionCallAnalysisEvent;
|
|
|
|
interface AfterFunctionCallAnalysisInterface
|
|
{
|
|
public static function afterFunctionCallAnalysis(AfterFunctionCallAnalysisEvent $event): void;
|
|
}
|