Exception
2 years ago
AbstractProxyFactory.php
2 years ago
Autoloader.php
2 years ago
Proxy.php
2 years ago
ProxyDefinition.php
2 years ago
ProxyGenerator.php
9 months ago
index.php
2 years ago
ProxyDefinition.php
21 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\Common\Proxy; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use ReflectionProperty; |
| 5 | class ProxyDefinition |
| 6 | { |
| 7 | public $proxyClassName; |
| 8 | public $identifierFields; |
| 9 | public $reflectionFields; |
| 10 | public $initializer; |
| 11 | public $cloner; |
| 12 | public function __construct($proxyClassName, array $identifierFields, array $reflectionFields, $initializer, $cloner) |
| 13 | { |
| 14 | $this->proxyClassName = $proxyClassName; |
| 15 | $this->identifierFields = $identifierFields; |
| 16 | $this->reflectionFields = $reflectionFields; |
| 17 | $this->initializer = $initializer; |
| 18 | $this->cloner = $cloner; |
| 19 | } |
| 20 | } |
| 21 |