mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 18:17:55 +01:00
16 lines
384 B
PHP
16 lines
384 B
PHP
|
<?php
|
||
|
|
||
|
class BasePlugin extends \Psalm\Plugin
|
||
|
{
|
||
|
public static function afterFunctionCallCheck(
|
||
|
\Psalm\StatementsSource $statements_source,
|
||
|
$function_id,
|
||
|
array $args,
|
||
|
\Psalm\CodeLocation $code_location,
|
||
|
\Psalm\Context $context,
|
||
|
array &$file_replacements = [],
|
||
|
\Psalm\Type\Union &$return_type_candidate = null
|
||
|
) {
|
||
|
}
|
||
|
}
|