File "Attribute.php"

Full Path: /var/www/html/back/vendor/phpstan/phpdoc-parser/src/Ast/Attribute.php
File size: 341 bytes
MIME-type: text/x-php
Charset: utf-8

<?php declare(strict_types = 1);

namespace PHPStan\PhpDocParser\Ast;

final class Attribute
{

	public const START_LINE = 'startLine';
	public const END_LINE = 'endLine';

	public const START_INDEX = 'startIndex';
	public const END_INDEX = 'endIndex';

	public const ORIGINAL_NODE = 'originalNode';

	public const COMMENTS = 'comments';

}