1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 10:38:49 +01:00
psalm/tests/Config/Plugin/Hook/FooPropertyProvider.php

69 lines
1.6 KiB
PHP
Raw Normal View History

<?php
2019-05-10 00:58:30 +02:00
namespace Psalm\Test\Config\Plugin\Hook;
use PhpParser;
use Psalm\CodeLocation;
use Psalm\Context;
2019-03-23 19:27:54 +01:00
use Psalm\Plugin\Hook\PropertyExistenceProviderInterface;
use Psalm\Plugin\Hook\PropertyTypeProviderInterface;
use Psalm\Plugin\Hook\PropertyVisibilityProviderInterface;
use Psalm\StatementsSource;
2019-03-23 19:27:54 +01:00
use Psalm\Type;
class FooPropertyProvider implements
PropertyExistenceProviderInterface,
PropertyVisibilityProviderInterface,
PropertyTypeProviderInterface
{
/**
* @return array<string>
*/
public static function getClassLikeNames() : array
{
return ['Ns\Foo'];
}
/**
* @return ?bool
*/
public static function doesPropertyExist(
string $fq_classlike_name,
string $property_name,
bool $read_mode,
StatementsSource $source = null,
Context $context = null,
CodeLocation $code_location = null
) {
return $property_name === 'magic_property';
}
/**
* @return ?bool
*/
public static function isPropertyVisible(
StatementsSource $source,
string $fq_classlike_name,
string $property_name,
bool $read_mode,
Context $context = null,
CodeLocation $code_location = null
) {
return true;
}
/**
* @param array<PhpParser\Node\Arg> $call_args
2019-03-23 19:27:54 +01:00
*
* @return ?Type\Union
*/
public static function getPropertyType(
string $fq_classlike_name,
string $property_name,
bool $read_mode,
StatementsSource $source = null,
Context $context = null
) {
return Type::getString();
}
}