mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 18:17:55 +01:00
10f2966dcb
* return types * remove willReturn for void methods
16 lines
444 B
PHP
16 lines
444 B
PHP
<?php
|
|
|
|
class BasePlugin implements Psalm\Plugin\Hook\AfterFunctionCallAnalysisInterface
|
|
{
|
|
public static function afterFunctionCallAnalysis(
|
|
\PhpParser\Node\Expr\FuncCall $expr,
|
|
string $function_id,
|
|
\Psalm\Context $context,
|
|
\Psalm\StatementsSource $statements_source,
|
|
\Psalm\Codebase $codebase,
|
|
\Psalm\Type\Union $return_type_candidate,
|
|
array &$file_replacements
|
|
): void {
|
|
}
|
|
}
|