/**
  * Method called to associate a FileImportHistory object to this object
  * through the FileImportHistory foreign key attribute
  *
  * @param      FileImportHistory $l FileImportHistory
  * @return     void
  * @throws     PropelException
  */
 public function addFileImportHistory(FileImportHistory $l)
 {
     $this->collFileImportHistorys[] = $l;
     $l->setUser($this);
 }