Ejemplo n.º 1
0
 /**
  * Sets a single UserInformation object as related to this object by a one-to-one relationship.
  *
  * @param      UserInformation $l UserInformation
  * @return     Users The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setUserInformation(UserInformation $v)
 {
     $this->singleUserInformation = $v;
     // Make sure that that the passed-in UserInformation isn't already associated with this object
     if ($v->getUsers() === null) {
         $v->setUsers($this);
     }
     return $this;
 }