Page MenuHomeWickedGov Phorge

Token.php
No OneTemporary

Size
644 B
Referenced Files
None
Subscribers
None

Token.php

<?php declare(strict_types = 1);
namespace TheSeer\Tokenizer;
class Token {
/** @var int */
private $line;
/** @var string */
private $name;
/** @var string */
private $value;
/**
* Token constructor.
*/
public function __construct(int $line, string $name, string $value) {
$this->line = $line;
$this->name = $name;
$this->value = $value;
}
public function getLine(): int {
return $this->line;
}
public function getName(): string {
return $this->name;
}
public function getValue(): string {
return $this->value;
}
}

File Metadata

Mime Type
text/x-php
Expires
Aug 19 2026, 17:15 (4 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
12/86/f72683517ae820edabca2bc5ef29
Default Alt Text
Token.php (644 B)

Event Timeline