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 : 216.73.216.55
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
nikic /
php-parser /
lib /
PhpParser /
Node /
Delete
Unzip
Name
Size
Permission
Date
Action
Expr
[ DIR ]
drwxr-xr-x
2018-10-10 09:00
Name
[ DIR ]
drwxr-xr-x
2018-10-10 09:00
Scalar
[ DIR ]
drwxr-xr-x
2018-10-10 09:00
Stmt
[ DIR ]
drwxr-xr-x
2018-10-10 09:00
Arg.php
1.01
KB
-rw-r--r--
2018-10-10 09:00
Const_.php
985
B
-rw-r--r--
2018-10-10 09:00
Expr.php
133
B
-rw-r--r--
2018-10-10 09:00
FunctionLike.php
640
B
-rw-r--r--
2018-10-10 09:00
Identifier.php
1.73
KB
-rw-r--r--
2018-10-10 09:00
Name.php
7.56
KB
-rw-r--r--
2018-10-10 09:00
NullableType.php
744
B
-rw-r--r--
2018-10-10 09:00
Param.php
1.6
KB
-rw-r--r--
2018-10-10 09:00
Scalar.php
98
B
-rw-r--r--
2018-10-10 09:00
Stmt.php
133
B
-rw-r--r--
2018-10-10 09:00
VarLikeIdentifier.php
503
B
-rw-r--r--
2018-10-10 09:00
Save
Rename
<?php declare(strict_types=1); namespace PhpParser\Node; use PhpParser\NodeAbstract; class Param extends NodeAbstract { /** @var null|Identifier|Name|NullableType Typehint */ public $type; /** @var bool Whether parameter is passed by reference */ public $byRef; /** @var bool Whether this is a variadic argument */ public $variadic; /** @var Expr\Variable|Expr\Error Parameter variable */ public $var; /** @var null|Expr Default value */ public $default; /** * Constructs a parameter node. * * @param Expr\Variable|Expr\Error $var Parameter variable * @param null|Expr $default Default value * @param null|string|Name|NullableType $type Typehint * @param bool $byRef Whether is passed by reference * @param bool $variadic Whether this is a variadic argument * @param array $attributes Additional attributes */ public function __construct( $var, Expr $default = null, $type = null, bool $byRef = false, bool $variadic = false, array $attributes = [] ) { parent::__construct($attributes); $this->type = \is_string($type) ? new Identifier($type) : $type; $this->byRef = $byRef; $this->variadic = $variadic; $this->var = $var; $this->default = $default; } public function getSubNodeNames() : array { return ['type', 'byRef', 'variadic', 'var', 'default']; } public function getType() : string { return 'Param'; } }