rector/packages/BetterPhpDocParser/ValueObject/PhpDocAttributeKey.php
Tomas Votruba d035c86f90 Updated Rector to commit a7e66d67bd
a7e66d67bd remove excluded files
2022-05-30 00:02:22 +00:00

31 lines
872 B
PHP

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