示例#1
0
 /**
  * Sets a single PcPasswordResetToken object as related to this object by a one-to-one relationship.
  *
  * @param      PcPasswordResetToken $l PcPasswordResetToken
  * @return     PcUser The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setPcPasswordResetToken(PcPasswordResetToken $v)
 {
     $this->singlePcPasswordResetToken = $v;
     // Make sure that that the passed-in PcPasswordResetToken isn't already associated with this object
     if ($v->getPcUser() === null) {
         $v->setPcUser($this);
     }
     return $this;
 }