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 : 18.118.140.120
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
doctrine /
common /
src /
Proxy /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxrwxr-x
2022-08-23 19:46
AbstractProxyFactory.php
7.68
KB
-rw-rw-r--
2022-08-23 19:46
Autoloader.php
2.89
KB
-rw-rw-r--
2022-08-23 19:46
Proxy.php
1.76
KB
-rw-rw-r--
2022-08-23 19:46
ProxyDefinition.php
1.11
KB
-rw-rw-r--
2022-08-23 19:46
ProxyGenerator.php
37.67
KB
-rw-rw-r--
2022-08-23 19:46
Save
Rename
<?php namespace Doctrine\Common\Proxy; use ReflectionProperty; /** * Definition structure how to create a proxy. */ class ProxyDefinition { /** @var string */ public $proxyClassName; /** @var array<string> */ public $identifierFields; /** @var ReflectionProperty[] */ public $reflectionFields; /** @var callable */ public $initializer; /** @var callable */ public $cloner; /** * @param string $proxyClassName * @param array<string> $identifierFields * @param array<string, ReflectionProperty> $reflectionFields * @param callable $initializer * @param callable $cloner */ public function __construct($proxyClassName, array $identifierFields, array $reflectionFields, $initializer, $cloner) { $this->proxyClassName = $proxyClassName; $this->identifierFields = $identifierFields; $this->reflectionFields = $reflectionFields; $this->initializer = $initializer; $this->cloner = $cloner; } }