예제 #1
0
파일: Customer.php 프로젝트: blab2015/seh
 /**
  * Adds a Brand.
  *
  * @param Brand $brand
  * @return $this For fluid purposes.
  */
 public function addBrand(\Seh\Bundle\SehBundle\Entity\Brand $brand)
 {
     if (!$this->brands->contains($brand)) {
         $this->brands->add($brand);
     }
     return $this;
 }