mirror of
https://github.com/danog/psalm.git
synced 2025-01-05 20:48:45 +01:00
16 lines
358 B
PHP
16 lines
358 B
PHP
<?php
|
|
|
|
namespace Psalm\Plugin\EventHandler;
|
|
|
|
use Psalm\Plugin\EventHandler\Event\AfterFunctionLikeAnalysisEvent;
|
|
|
|
interface AfterFunctionLikeAnalysisInterface
|
|
{
|
|
/**
|
|
* Called after a statement has been checked
|
|
*
|
|
* @return null|false
|
|
*/
|
|
public static function afterStatementAnalysis(AfterFunctionLikeAnalysisEvent $event): ?bool;
|
|
}
|