Exemple #1
0
 /**
  * Set type.
  *
  * @param Type $type
  *
  * @return Item
  */
 public function setType(Type $type)
 {
     if ($this->type !== $type) {
         $this->type = $type;
         $type->setItem($this);
     }
     return $this;
 }