1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/Config/Plugin/Hook/MagicFunctionProvider.php
orklah d8fea8aabb
implement DTO for plugins (#4881)
* implement DTO for plugins

* introduce EventHandler + reintroduce legacy API for plugins
2021-01-29 11:47:27 +01:00

45 lines
1.4 KiB
PHP

<?php
namespace Psalm\Test\Config\Plugin\Hook;
use PhpParser;
use Psalm\Plugin\EventHandler\FunctionExistenceProviderInterface;
use Psalm\Plugin\EventHandler\FunctionParamsProviderInterface;
use Psalm\Plugin\EventHandler\FunctionReturnTypeProviderInterface;
use Psalm\Plugin\EventHandler\Event\FunctionExistenceProviderEvent;
use Psalm\Plugin\EventHandler\Event\FunctionParamsProviderEvent;
use Psalm\Plugin\EventHandler\Event\FunctionReturnTypeProviderEvent;
use Psalm\Type;
class MagicFunctionProvider implements
FunctionExistenceProviderInterface,
FunctionParamsProviderInterface,
FunctionReturnTypeProviderInterface
{
/**
* @return array<lowercase-string>
*/
public static function getFunctionIds() : array
{
return ['magicfunction'];
}
public static function doesFunctionExist(FunctionExistenceProviderEvent $event): ?bool
{
$function_id = $event->getFunctionId();
return $function_id === 'magicfunction';
}
/**
* @return ?array<int, \Psalm\Storage\FunctionLikeParameter>
*/
public static function getFunctionParams(FunctionParamsProviderEvent $event): ?array
{
return [new \Psalm\Storage\FunctionLikeParameter('first', false, Type::getString())];
}
public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $event): ?Type\Union
{
return Type::getString();
}
}