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.19.76.4
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 FactoryClass { /** * @var string */ private $file; /** * @var ReflectionClass */ private $reflector; /** * @var array */ private $methods; public function __construct($file, ReflectionClass $class) { $this->file = $file; $this->reflector = $class; $this->extractFactoryMethods(); } public function extractFactoryMethods() { $this->methods = array(); foreach ($this->getPublicStaticMethods() as $method) { if ($method->isFactory()) { // echo $this->getName() . '::' . $method->getName() . ' : ' . count($method->getCalls()) . PHP_EOL; $this->methods[] = $method; } } } public function getPublicStaticMethods() { $methods = array(); foreach ($this->reflector->getMethods(ReflectionMethod::IS_STATIC) as $method) { if ($method->isPublic() && $method->getDeclaringClass() == $this->reflector) { $methods[] = new FactoryMethod($this, $method); } } return $methods; } public function getFile() { return $this->file; } public function getName() { return $this->reflector->name; } public function isFactory() { return !empty($this->methods); } public function getMethods() { return $this->methods; } }