/** * Get the associated Company object * * @param PropelPDO Optional Connection object. * @return Company The associated Company object. * @throws PropelException */ public function getCompany(PropelPDO $con = null) { if ($this->aCompany === null && $this->company_id !== null) { $this->aCompany = CompanyPeer::retrieveByPk($this->company_id); /* The following can be used additionally to guarantee the related object contains a reference to this object. This level of coupling may, however, be undesirable since it could result in an only partially populated collection in the referenced object. $this->aCompany->addElements($this); */ } return $this->aCompany; }