Esempio n. 1
0
 /**
  * Declares an association between this object and a ChildDelivery object.
  *
  * @param  ChildDelivery $v
  * @return $this|\App\Propel\Order The current object (for fluent API support)
  * @throws PropelException
  */
 public function setDelivery(ChildDelivery $v = null)
 {
     if ($v === null) {
         $this->setDeliveryId(NULL);
     } else {
         $this->setDeliveryId($v->getDeliveryId());
     }
     $this->aDelivery = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildDelivery object, it will not be re-added.
     if ($v !== null) {
         $v->addOrder($this);
     }
     return $this;
 }