1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 18:36:58 +01:00
psalm/src/Psalm/Internal/Provider/MethodExistenceProvider.php

104 lines
2.6 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Internal\Provider;
use PhpParser;
use Psalm\CodeLocation;
use Psalm\StatementsSource;
use Psalm\Plugin\Hook\MethodExistenceProviderInterface;
class MethodExistenceProvider
{
/**
* @var array<
* string,
* array<\Closure(
* string,
* string,
* ?StatementsSource=,
* ?CodeLocation
* ) : ?bool>
* >
*/
private static $handlers = [];
public function __construct()
{
self::$handlers = [];
}
/**
* @param class-string<MethodExistenceProviderInterface> $class
* @psalm-suppress PossiblyUnusedParam
* @return void
*/
public function registerClass(string $class)
{
if (version_compare(PHP_VERSION, '7.1.0') >= 0) {
/**
* @psalm-suppress UndefinedMethod
* @var \Closure
*/
$callable = \Closure::fromCallable([$class, 'doesMethodExist']);
} else {
$callable = (new \ReflectionClass($class))->getMethod('doesMethodExist')->getClosure(new $class);
if (!$callable) {
throw new \UnexpectedValueException('Callable must not be null');
}
}
foreach ($class::getClassLikeNames() as $fq_classlike_name) {
/** @psalm-suppress MixedTypeCoercion */
$this->registerClosure($fq_classlike_name, $callable);
}
}
/**
* /**
* @param \Closure(
* string,
* string,
* ?StatementsSource=,
* ?CodeLocation
* ) : ?bool $c
*
* @return void
*/
public function registerClosure(string $fq_classlike_name, \Closure $c)
{
self::$handlers[strtolower($fq_classlike_name)][] = $c;
}
public function has(string $fq_classlike_name) : bool
{
return isset(self::$handlers[strtolower($fq_classlike_name)]);
}
/**
* @param array<PhpParser\Node\Arg> $call_args
* @return ?bool
*/
public function doesMethodExist(
string $fq_classlike_name,
string $method_name_lowercase,
StatementsSource $source = null,
CodeLocation $code_location = null
) {
foreach (self::$handlers[strtolower($fq_classlike_name)] as $method_handler) {
$method_exists = $method_handler(
$fq_classlike_name,
$method_name_lowercase,
$source,
$code_location
);
if ($method_exists !== null) {
return $method_exists;
}
}
return null;
}
}