id; } /** * Set nom * * @param string $nom * * @return Biere */ public function setNom($nom) { $this->nom = $nom; return $this; } /** * Get nom * * @return string */ public function getNom() { return $this->nom; } /** * Set degre * * @param float $degre * * @return Biere */ public function setDegre($degre) { $this->degre = $degre; return $this; } /** * Get degre * * @return float */ public function getDegre() { return $this->degre; } /** * Set image * * @param string $image * * @return Biere */ public function setImage($image) { $this->image = $image; return $this; } /** * Get image * * @return string */ public function getImage() { return $this->image; } /** * @return int */ public function getCategorie() { return $this->categorie; } /** * @param int $categorie * @return Biere */ public function setCategorie($categorie) { $this->categorie = $categorie; return $this; } /** * @return int */ public function getBrasserie() { return $this->brasserie; } /** * @param int $brasserie * @return Biere */ public function setBrasserie($brasserie) { $this->brasserie = $brasserie; return $this; } }