code = $code; return $this; } /** * Get code. * * @return string */ public function getCode() { return $this->code; } /** * Set name. * * @param string $name * * @return ClassItem */ public function setName($name) { $this->name = $name; return $this; } /** * Get name. * * @return string */ public function getName() { return $this->name; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }