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