/**
  * Get a deleted repository by its id
  *
  * @param int $id         The id of the repository to load
  *
  * @return GitRepository the repository or null if not found
  */
 public function getDeletedRepository($id)
 {
     $dar = $this->dao->searchDeletedRepositoryById($id);
     return $this->getRepositoryFromDar($dar);
 }