Storm\Drivers\Base\Mapping\Mappings\PropertyMapping::__construct PHP Method

__construct() public method

public __construct ( Storm\Core\Object\IProperty $Property )
$Property Storm\Core\Object\IProperty
    public function __construct(Object\IProperty $Property)
    {
        $this->Property = $Property;
    }

Usage Example

 public function __construct(Object\IRelationshipProperty $RelationshipProperty, Relational\IRelation $Relation)
 {
     parent::__construct($RelationshipProperty);
     $this->RelationshipProperty = $RelationshipProperty;
     $this->EntityType = $RelationshipProperty->GetEntityType();
     $this->Relation = $Relation;
 }
All Usage Examples Of Storm\Drivers\Base\Mapping\Mappings\PropertyMapping::__construct