mirror of
https://github.com/danog/psalm.git
synced 2024-12-16 19:36:59 +01:00
27 lines
579 B
PHP
27 lines
579 B
PHP
<?php
|
|
namespace Psalm\Plugin\Hook;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
use Psalm\Codebase;
|
|
use Psalm\Context;
|
|
use Psalm\FileManipulation;
|
|
use Psalm\StatementsSource;
|
|
|
|
interface AfterStatementAnalysisInterface
|
|
{
|
|
/**
|
|
* Called after a statement has been checked
|
|
*
|
|
* @param FileManipulation[] $file_replacements
|
|
*
|
|
* @return null|false
|
|
*/
|
|
public static function afterStatementAnalysis(
|
|
Stmt $stmt,
|
|
Context $context,
|
|
StatementsSource $statements_source,
|
|
Codebase $codebase,
|
|
array &$file_replacements = []
|
|
);
|
|
}
|