private function getProjectXMLFromArchive(ArchiveInterface $archive)
 {
     $xml_contents = $archive->getProjectXML();
     if (!$xml_contents) {
         throw new RuntimeException('No content available in archive for file ' . ArchiveInterface::PROJECT_FILE);
     }
     return $this->getSimpleXMLElementFromString($xml_contents);
 }