1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-05 20:48:45 +01:00
psalm/src/Psalm/Plugin/EventHandler/AfterFunctionLikeAnalysisInterface.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;
}