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