1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 09:37:59 +01:00
psalm/tests/fixtures/stubs/base_plugin.php
orklah d8fea8aabb
implement DTO for plugins (#4881)
* implement DTO for plugins

* introduce EventHandler + reintroduce legacy API for plugins
2021-01-29 11:47:27 +01:00

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