Storm\Drivers\Base\Object\Properties\Proxies\ConcreteProxyDataGenerator::__construct PHP Метод

__construct() публичный Метод

public __construct ( )
    public function __construct()
    {
        if (!isset(self::$NullProxyReflection)) {
            self::$NullProxyReflection = new \ReflectionClass(Null__Proxy::GetType());
            foreach (self::$NullProxyReflection->getProperties() as $Property) {
                self::$NullProxyProperties[$Property->getName()] = $Property;
            }
            foreach (self::$NullProxyReflection->getMethods() as $Method) {
                self::$NullProxyMethods[$Method->getName()] = $Method;
            }
        }
    }