<?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; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Exception.php | File | 102 B | 0644 |
|
NamespaceUri.php | File | 595 B | 0644 |
|
NamespaceUriException.php | File | 113 B | 0644 |
|
Token.php | File | 644 B | 0644 |
|
TokenCollection.php | File | 2.19 KB | 0644 |
|
TokenCollectionException.php | File | 116 B | 0644 |
|
Tokenizer.php | File | 3.36 KB | 0644 |
|
XMLSerializer.php | File | 2.23 KB | 0644 |
|