mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
d8fea8aabb
* implement DTO for plugins * introduce EventHandler + reintroduce legacy API for plugins
10 lines
275 B
PHP
10 lines
275 B
PHP
<?php
|
|
|
|
use Psalm\Plugin\EventHandler\Event\AfterFunctionCallAnalysisEvent;
|
|
|
|
class BasePlugin implements Psalm\Plugin\EventHandler\AfterFunctionCallAnalysisInterface
|
|
{
|
|
public static function afterFunctionCallAnalysis(AfterFunctionCallAnalysisEvent $event): void {
|
|
}
|
|
}
|