1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/Config/Plugin/Hook/FooPropertyProvider.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

41 lines
1.2 KiB
PHP

<?php
namespace Psalm\Test\Config\Plugin\Hook;
use Psalm\Plugin\EventHandler\PropertyExistenceProviderInterface;
use Psalm\Plugin\EventHandler\PropertyTypeProviderInterface;
use Psalm\Plugin\EventHandler\PropertyVisibilityProviderInterface;
use Psalm\Plugin\EventHandler\Event\PropertyExistenceProviderEvent;
use Psalm\Plugin\EventHandler\Event\PropertyTypeProviderEvent;
use Psalm\Plugin\EventHandler\Event\PropertyVisibilityProviderEvent;
use Psalm\Type;
class FooPropertyProvider implements
PropertyExistenceProviderInterface,
PropertyVisibilityProviderInterface,
PropertyTypeProviderInterface
{
/**
* @return array<string>
*/
public static function getClassLikeNames() : array
{
return ['Ns\Foo'];
}
public static function doesPropertyExist(PropertyExistenceProviderEvent $event): ?bool
{
$property_name = $event->getPropertyName();
return $property_name === 'magic_property';
}
public static function isPropertyVisible(PropertyVisibilityProviderEvent $event): ?bool
{
return true;
}
public static function getPropertyType(PropertyTypeProviderEvent $event): ?Type\Union
{
return Type::getString();
}
}