nginxsonarrradarrplexorganizrdashboardapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmark
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
881 B
56 lines
881 B
7 years ago
|
<?php declare(strict_types = 1);
|
||
|
namespace TheSeer\Tokenizer;
|
||
|
|
||
|
class Token {
|
||
|
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
private $line;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $name;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $value;
|
||
|
|
||
|
/**
|
||
|
* Token constructor.
|
||
|
*
|
||
|
* @param int $line
|
||
|
* @param string $name
|
||
|
* @param string $value
|
||
|
*/
|
||
|
public function __construct(int $line, string $name, string $value) {
|
||
|
$this->line = $line;
|
||
|
$this->name = $name;
|
||
|
$this->value = $value;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return int
|
||
|
*/
|
||
|
public function getLine(): int {
|
||
|
return $this->line;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName(): string {
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getValue(): string {
|
||
|
return $this->value;
|
||
|
}
|
||
|
|
||
|
}
|