sort = (int) $sort; $this->type = $type; $this->tid = (int) $tid; $this->colref = (int) $colref; $this->enabled = (bool) $enabled; } /** * @return int */ public function getSort() { return $this->sort; } /** * @return int */ public function getTid() { return $this->tid; } /** * @return AbstractBaseType */ public function getType() { return $this->type; } /** * @return int */ public function getColref() { return $this->colref; } /** * @return boolean */ public function isEnabled() { return $this->enabled; } }