Submit
Path:
~
/
/
proc
/
self
/
root
/
opt
/
psa
/
admin
/
plib
/
modules
/
monitoring
/
vendor
/
nxp
/
math-executor
/
src
/
NXP
/
Classes
/
File Content:
Token.php
<?php namespace PleskMonitoring\NXP\Classes; class Token { public const Literal = 'literal'; public const Variable = 'variable'; public const Operator = 'operator'; public const LeftParenthesis = 'LP'; public const RightParenthesis = 'RP'; public const Function = 'function'; public const ParamSeparator = 'separator'; public const String = 'string'; public const Space = 'space'; public ?int $paramCount = null; //to store function parameter count in stack /** * Token constructor. * */ public function __construct(public string $type, public mixed $value, public ?string $name = null) { } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
Calculator.php
2971 bytes
0644
CustomFunction.php
1702 bytes
0644
Operator.php
1122 bytes
0644
Token.php
670 bytes
0644
Tokenizer.php
13693 bytes
0644
N4ST4R_ID | Naxtarrr