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 FactoryCall { /** * Hamcrest standard is two spaces for each level of indentation. * * @var string */ const INDENT = ' '; /** * @var FactoryMethod */ private $method; /** * @var string */ private $name; public function __construct(FactoryMethod $method, $name) { $this->method = $method; $this->name = $name; } public function getMethod() { return $this->method; } public function getName() { return $this->name; } }