rector/packages/BetterPhpDocParser/ValueObject/PhpDocAttributeKey.php
Tomas Votruba 345a89a7e2 Updated Rector to commit a657258f31
a657258f31 cleanup CHANGELOG, is part of GitHub releases now (#2)
2021-05-10 00:23:30 +00:00

26 lines
729 B
PHP

<?php
declare (strict_types=1);
namespace Rector\BetterPhpDocParser\ValueObject;
use RectorPrefix20210510\Symplify\SimplePhpDocParser\ValueObject\PhpDocAttributeKey as NativePhpDocAttributeKey;
final class PhpDocAttributeKey
{
/**
* @var string
*/
public const START_AND_END = 'start_and_end';
/**
* @var string
*/
public const PARENT = \RectorPrefix20210510\Symplify\SimplePhpDocParser\ValueObject\PhpDocAttributeKey::PARENT;
/**
* @var string
*/
public const LAST_PHP_DOC_TOKEN_POSITION = 'last_token_position';
/**
* @var string
*/
public const ORIG_NODE = \RectorPrefix20210510\Symplify\SimplePhpDocParser\ValueObject\PhpDocAttributeKey::ORIG_NODE;
}