1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00

Add some doc about DynamicFunctionStorageProvider

This commit is contained in:
adrew 2022-01-28 14:27:40 +03:00
parent dd0e00e153
commit 1a8367a273

View File

@ -12,13 +12,16 @@ use Psalm\Internal\Analyzer\StatementsAnalyzer;
use Psalm\Plugin\ArgTypeInferer;
use Psalm\Plugin\DynamicFunctionStorage;
use Psalm\Plugin\DynamicTemplateProvider;
use Psalm\Plugin\EventHandler\Event\DynamicFunctionStorageProviderEvent;
use Psalm\Plugin\EventHandler\DynamicFunctionStorageProviderInterface;
use Psalm\Plugin\EventHandler\Event\DynamicFunctionStorageProviderEvent;
use Psalm\Storage\FunctionStorage;
use function strtolower;
/**
* For each function call analysis will be created individual FunctionStorage in plugin hook.
* If it is created be aware, it shadows the FunctionStorage Psalm may generate during the scanning phase.
*
* @internal
*/
final class DynamicFunctionStorageProvider