rector/packages/BetterPhpDocParser/ValueObject/PhpDocAttributeKey.php
Tomas Votruba 2b85976c4c Updated Rector to commit adb6e68c2a
adb6e68c2a [automated] Re-Generate Nodes/Rectors Documentation (#2343)
2022-05-22 00:38:26 +00:00

31 lines
872 B
PHP

<?php
declare (strict_types=1);
namespace Rector\BetterPhpDocParser\ValueObject;
use RectorPrefix20220522\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 = \RectorPrefix20220522\Symplify\Astral\PhpDocParser\ValueObject\PhpDocAttributeKey::PARENT;
/**
* @var string
*/
public const LAST_PHP_DOC_TOKEN_POSITION = 'last_token_position';
/**
* @var string
*/
public const ORIG_NODE = \RectorPrefix20220522\Symplify\Astral\PhpDocParser\ValueObject\PhpDocAttributeKey::ORIG_NODE;
}