1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-16 03:17:02 +01:00
psalm/src/Psalm/Plugin/EventHandler/AfterFunctionCallAnalysisInterface.php
orklah f9fccb2b2d
implement DTO for plugins (#4881)
* implement DTO for plugins

* introduce EventHandler + reintroduce legacy API for plugins
2021-01-06 09:05:53 -05:00

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