rector/packages/BetterPhpDocParser/ValueObject/PhpDocAttributeKey.php
Tomas Votruba 65f6a3f867 Updated Rector to commit 8f86f525f7
8f86f525f7 Fix stub PHPUnit\Framework\TestCase (#1954)
2022-03-22 14:39:27 +00:00

31 lines
872 B
PHP

<?php
declare (strict_types=1);
namespace Rector\BetterPhpDocParser\ValueObject;
use RectorPrefix20220322\Symplify\Astral\PhpDocParser\ValueObject\PhpDocAttributeKey as NativePhpDocAttributeKey;
final class PhpDocAttributeKey
{
/**
* @var string
*/
public const START_AND_END = 'start_and_end';
/**
* Fully qualified name of identifier type class
* @var string
*/
public const RESOLVED_CLASS = 'resolved_class';
/**
* @var string
*/
public const PARENT = \RectorPrefix20220322\Symplify\Astral\PhpDocParser\ValueObject\PhpDocAttributeKey::PARENT;
/**
* @var string
*/
public const LAST_PHP_DOC_TOKEN_POSITION = 'last_token_position';
/**
* @var string
*/
public const ORIG_NODE = \RectorPrefix20220322\Symplify\Astral\PhpDocParser\ValueObject\PhpDocAttributeKey::ORIG_NODE;
}