Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/rector/rector/vendor/nette/neon/src/Neon/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/vendor/rector/rector/vendor/nette/neon/src/Neon/Token.php

<?php

/**
 * This file is part of the Nette Framework (https://nette.org)
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
 */
declare (strict_types=1);
namespace RectorPrefix202304\Nette\Neon;

/** @internal */
final class Token
{
    public const String = 1;
    public const Literal = 2;
    public const Char = 0;
    public const Comment = 3;
    public const Newline = 4;
    public const Whitespace = 5;
    /**
     * @var string
     */
    public $value;
    /**
     * @var int|string
     */
    public $type;
    /**
     * @param int|string $type
     */
    public function __construct(string $value, $type)
    {
        $this->value = $value;
        $this->type = $type;
    }
}