column = $column; $this->attributeId = $attributeId; $this->type = $type; } /** * Get column. * * @return string */ public function getColumn() { return $this->column; } /** * Get attribute ID. * * @return int|null */ public function getAttributeId() { return $this->attributeId; } /** * Get type. * * @return int */ public function getType() { return $this->type; } }