1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-13 17:57:37 +01:00
psalm/src/Psalm/Internal/Provider/MethodParamsProvider.php

105 lines
2.6 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Internal\Provider;
2019-07-05 22:24:00 +02:00
use const PHP_VERSION;
use PhpParser;
use Psalm\CodeLocation;
2019-07-05 22:24:00 +02:00
use Psalm\Context;
use Psalm\Plugin\Hook\MethodParamsProviderInterface;
2019-07-05 22:24:00 +02:00
use Psalm\StatementsSource;
use function strtolower;
2019-07-05 22:24:00 +02:00
use function version_compare;
class MethodParamsProvider
{
/**
* @var array<
* string,
* array<\Closure(
* string,
* string,
* ?array<PhpParser\Node\Arg>=,
* ?StatementsSource=,
* ?Context=,
* ?CodeLocation=
* ) : ?array<int, \Psalm\Storage\FunctionLikeParameter>>
* >
*/
private static $handlers = [];
public function __construct()
{
self::$handlers = [];
$this->registerClass(ReturnTypeProvider\PdoStatementSetFetchMode::class);
}
/**
* @param class-string<MethodParamsProviderInterface> $class
2019-07-05 22:24:00 +02:00
*
* @return void
*/
public function registerClass(string $class)
{
$callable = \Closure::fromCallable([$class, 'getMethodParams']);
foreach ($class::getClassLikeNames() as $fq_classlike_name) {
/** @psalm-suppress MixedTypeCoercion */
$this->registerClosure($fq_classlike_name, $callable);
}
}
/**
* @param \Closure(
* string,
* string,
* ?array<PhpParser\Node\Arg>=,
* ?StatementsSource=,
* ?Context=,
* ?CodeLocation=
* ) : ?array<int, \Psalm\Storage\FunctionLikeParameter> $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
2019-07-05 22:24:00 +02:00
*
* @return ?array<int, \Psalm\Storage\FunctionLikeParameter>
*/
public function getMethodParams(
string $fq_classlike_name,
string $method_name_lowercase,
array $call_args = null,
StatementsSource $statements_source = null,
Context $context = null,
CodeLocation $code_location = null
) {
foreach (self::$handlers[strtolower($fq_classlike_name)] as $class_handler) {
$result = $class_handler(
$fq_classlike_name,
$method_name_lowercase,
$call_args,
$statements_source,
$context,
$code_location
);
if ($result !== null) {
return $result;
}
}
return null;
}
}