Inheritance: implements Storm\Core\Object\IProperty
 public function __construct(Accessors\Accessor $Accessor, $EntityType, $IsIdentifying, Object\IProperty $BackReferenceProperty = null, IProxyGenerator $ProxyGenerator = null)
 {
     parent::__construct($Accessor);
     $this->EntityType = $EntityType;
     $this->IsIdentifying = $IsIdentifying;
     $this->BackReferenceProperty = $BackReferenceProperty;
     $this->OriginalValueStorageKey = $EntityType . $this->GetIdentifier();
     $this->ProxyGenerator = $ProxyGenerator;
 }
Beispiel #2
0
 public function __construct(Accessors\Accessor $Accessor, $IsIdentity = false)
 {
     parent::__construct($Accessor);
     $this->IsIdentity = $IsIdentity;
 }