GraphQL\Language\Token::__construct PHP Метод

__construct() публичный Метод

Token constructor.
public __construct ( $kind, $start, $end, $line, $column, Token $previous = null, null $value = null )
$kind
$start
$end
$line
$column
$previous Token
$value null
    public function __construct($kind, $start, $end, $line, $column, Token $previous = null, $value = null)
    {
        $this->kind = $kind;
        $this->start = (int) $start;
        $this->end = (int) $end;
        $this->line = (int) $line;
        $this->column = (int) $column;
        $this->prev = $previous;
        $this->next = null;
        $this->value = $value;
    }