コード例 #1
0
ファイル: BaseCessio.php プロジェクト: nagiro/intra
 /**
  * Declares an association between this object and a Usuaris object.
  *
  * @param      Usuaris $v
  * @return     Cessio The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setUsuaris(Usuaris $v = null)
 {
     if ($v === null) {
         $this->setUsuariId(NULL);
     } else {
         $this->setUsuariId($v->getUsuariid());
     }
     $this->aUsuaris = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Usuaris object, it will not be re-added.
     if ($v !== null) {
         $v->addCessio($this);
     }
     return $this;
 }