type = $type; } /** * @return mixed */ public function getType() { return $this->type; } /** * @param mixed $type * @return Placeholder */ public function setType($type) { $this->type = $type; return $this; } /** * @return int */ public function getIdx() { return $this->idx; } /** * @param int $idx * @return Placeholder */ public function setIdx($idx) { $this->idx = $idx; return $this; } }