1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/fixtures/stubs/base_plugin.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
275 B
PHP

<?php
use Psalm\Plugin\EventHandler\Event\AfterFunctionCallAnalysisEvent;
class BasePlugin implements Psalm\Plugin\EventHandler\AfterFunctionCallAnalysisInterface
{
public static function afterFunctionCallAnalysis(AfterFunctionCallAnalysisEvent $event): void {
}
}