Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4144486
Token.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
644 B
Referenced Files
None
Subscribers
None
Token.php
View Options
<?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
Details
Attached
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)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment