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