id; } /** * @param int $id * * @return Brand */ public function setId(int $id): Brand { $this->id = $id; return $this; } /** * @return string */ public function getName(): string { return $this->name; } /** * @param string $name * * @return Brand */ public function setName(string $name): Brand { $this->name = $name; return $this; } /** * @return string */ public function getDescription(): string { return $this->description; } /** * @param string $description * * @return Brand */ public function setDescription(string $description): Brand { $this->description = $description; return $this; } }