Example #1
0
 /**
  * Declares an association between this object and a SmintUser object.
  *
  * @param      SmintUser $v
  * @return     QueryComment The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setSmintUser(SmintUser $v = null)
 {
     if ($v === null) {
         $this->setSmintUserId(NULL);
     } else {
         $this->setSmintUserId($v->getId());
     }
     $this->aSmintUser = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the SmintUser object, it will not be re-added.
     if ($v !== null) {
         $v->addQueryComment($this);
     }
     return $this;
 }