1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/Config/Plugin/Hook/FooMethodProvider.php
2021-06-07 22:55:21 -04:00

58 lines
1.9 KiB
PHP

<?php
namespace Psalm\Test\Config\Plugin\Hook;
use Psalm\Plugin\EventHandler\Event\MethodExistenceProviderEvent;
use Psalm\Plugin\EventHandler\Event\MethodParamsProviderEvent;
use Psalm\Plugin\EventHandler\Event\MethodReturnTypeProviderEvent;
use Psalm\Plugin\EventHandler\MethodExistenceProviderInterface;
use Psalm\Plugin\EventHandler\MethodParamsProviderInterface;
use Psalm\Plugin\EventHandler\MethodReturnTypeProviderInterface;
use Psalm\Type;
class FooMethodProvider implements
MethodExistenceProviderInterface,
MethodParamsProviderInterface,
MethodReturnTypeProviderInterface
{
/**
* @return array<string>
*/
public static function getClassLikeNames() : array
{
return ['Ns\Foo'];
}
public static function doesMethodExist(MethodExistenceProviderEvent $event): ?bool
{
$method_name_lowercase = $event->getMethodNameLowercase();
if ($method_name_lowercase === 'magicmethod' || $method_name_lowercase === 'magicmethod2') {
return true;
}
return null;
}
/**
* @return ?array<int, \Psalm\Storage\FunctionLikeParameter>
*/
public static function getMethodParams(MethodParamsProviderEvent $event): ?array
{
$method_name_lowercase = $event->getMethodNameLowercase();
if ($method_name_lowercase === 'magicmethod' || $method_name_lowercase === 'magicmethod2') {
return [new \Psalm\Storage\FunctionLikeParameter('first', false, Type::getString())];
}
return null;
}
public static function getMethodReturnType(MethodReturnTypeProviderEvent $event): ?Type\Union
{
$method_name_lowercase = $event->getMethodNameLowercase();
if ($method_name_lowercase === 'magicmethod') {
return Type::getString();
} else {
return new \Psalm\Type\Union([new \Psalm\Type\Atomic\TNamedObject('NS\\Foo2')]);
}
}
}