rector/src/PHPStanStaticTypeMapper/Enum/TypeKind.php
2024-01-02 02:40:38 +00:00

21 lines
321 B
PHP

<?php
declare (strict_types=1);
namespace Rector\PHPStanStaticTypeMapper\Enum;
final class TypeKind
{
/**
* @var string
*/
public const PROPERTY = 'property';
/**
* @var string
*/
public const RETURN = 'return';
/**
* @var string
*/
public const PARAM = 'param';
}