1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/fixtures/stubs/base_plugin.phpstub
2021-02-13 18:42:34 -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 {
}
}