/** * Declares an association between this object and a OrderStatus object. * * @param OrderStatus $v * @return Order The current object (for fluent API support) * @throws PropelException */ public function setOrderStatus(OrderStatus $v = null) { if ($v === null) { $this->setOrderStatusId(NULL); } else { $this->setOrderStatusId($v->getId()); } $this->aOrderStatus = $v; // Add binding for other direction of this n:n relationship. // If this object has already been added to the OrderStatus object, it will not be re-added. if ($v !== null) { $v->addOrder($this); } return $this; }