1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 10:38:49 +01:00
psalm/tests/stubs/base_plugin.php
2018-11-12 11:20:59 -05:00

16 lines
409 B
PHP

<?php
class BasePlugin extends \Psalm\Plugin
{
public static function afterFunctionCallAnalysis(
\PhpParser\Node\Expr\FuncCall $expr,
string $function_id,
\Psalm\Context $context,
\Psalm\StatementsSource $statements_source,
\Psalm\Codebase $codebase,
array &$file_replacements = [],
\Psalm\Type\Union &$return_type_candidate = null
) {
}
}