Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.141.199.214
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
theseer /
tokenizer /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception.php
103
B
-rw-r--r--
2017-04-07 09:00
NamespaceUri.php
631
B
-rw-r--r--
2017-04-07 09:00
NamespaceUriException.php
114
B
-rw-r--r--
2017-04-07 09:00
Token.php
881
B
-rw-r--r--
2017-04-07 09:00
TokenCollection.php
2.61
KB
-rw-r--r--
2017-04-07 09:00
TokenCollectionException.php
117
B
-rw-r--r--
2017-04-07 09:00
Tokenizer.php
1.98
KB
-rw-r--r--
2017-04-07 09:00
XMLSerializer.php
2.38
KB
-rw-r--r--
2017-04-07 09:00
Save
Rename
<?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; } }