コード例 #1
0
ファイル: Stock.php プロジェクト: AlvaCorp/POS-2
 /**
  * Declares an association between this object and a ChildUnit object.
  *
  * @param  ChildUnit $v
  * @return $this|\ORM\Stock The current object (for fluent API support)
  * @throws PropelException
  */
 public function setUnit(ChildUnit $v = null)
 {
     if ($v === null) {
         $this->setUnitId(NULL);
     } else {
         $this->setUnitId($v->getId());
     }
     $this->aUnit = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildUnit object, it will not be re-added.
     if ($v !== null) {
         $v->addStock($this);
     }
     return $this;
 }