Example #1
0
 /**
  * {@inheritdoc}
  */
 public function getFile($id)
 {
     if ($this->fileExists($id)) {
         $out = new BackupFile();
         $out->setMeta('id', $id);
         $out->setFullName($id);
         return $out;
     }
     return NULL;
 }