Example #1
0
 /**
  * Set imagePrincipale
  *
  * @param \AppBundle\Entity\Image $imagePrincipale
  * @return Voiture
  */
 public function setImagePrincipale(\AppBundle\Entity\Image $imagePrincipale = null)
 {
     if ($imagePrincipale !== null) {
         $imagePrincipale->setVoiture($this);
         $this->imagePrincipale = $imagePrincipale;
     }
     $this->imagePrincipale = $imagePrincipale;
     return $this;
 }