1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 02:47:02 +01:00
psalm/src/Psalm/Internal/Provider/FunctionExistenceProvider.php

82 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Internal\Provider;
use PhpParser;
2019-07-05 22:24:00 +02:00
use Psalm\Plugin\Hook\FunctionExistenceProviderInterface;
use Psalm\StatementsSource;
use function strtolower;
class FunctionExistenceProvider
{
/**
* @var array<
* string,
* array<\Closure(
* StatementsSource,
* string
* ) : ?bool>
* >
*/
private static $handlers = [];
public function __construct()
{
self::$handlers = [];
}
/**
* @param class-string<FunctionExistenceProviderInterface> $class
2019-07-05 22:24:00 +02:00
*
* @return void
*/
public function registerClass(string $class)
{
$callable = \Closure::fromCallable([$class, 'doesFunctionExist']);
foreach ($class::getFunctionIds() as $function_id) {
$this->registerClosure($function_id, $callable);
}
}
/**
* /**
* @param \Closure(
* StatementsSource,
* string
* ) : ?bool $c
*
* @return void
*/
public function registerClosure(string $function_id, \Closure $c)
{
self::$handlers[$function_id][] = $c;
}
public function has(string $function_id) : bool
{
return isset(self::$handlers[strtolower($function_id)]);
}
/**
* @param array<PhpParser\Node\Arg> $call_args
2019-07-05 22:24:00 +02:00
*
*/
public function doesFunctionExist(
StatementsSource $statements_source,
string $function_id
): ?bool {
foreach (self::$handlers[strtolower($function_id)] as $function_handler) {
$function_exists = $function_handler(
$statements_source,
$function_id
);
if ($function_exists !== null) {
return $function_exists;
}
}
return null;
}
}